
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#modal-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(131, 131, 131, 0.425);
    position: absolute;
    top: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#modal-container .box-modal{
    width: 700px;
    height: 300px;
    background-color: rgb(56, 56, 56);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.23); 
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.23);
}

#modal-message-box {
    color: aliceblue;
    margin-left: auto;
    margin-right: auto;
}

#modal-container .box-close-button{
    display: flex;
    justify-content: flex-end;
    height: fit-content;
    width: 100%;
}
#modal-container #close-button{
    transform: rotate(45deg);
    font-size: 32px;
    color: rgb(165, 165, 165);
    font-weight: bold;
    cursor: pointer;
    line-height: 0;
}

#modal-container .title {
    color: aliceblue;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    font-size: 20px;
}

#modal-container .box-button{
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

#modal-container .success-button{
width:170px;
height: 50px;
background-color: rgba(41,215,223,.25);
display: flex;
justify-content: center;
align-items: center;
border-radius: 8px;
border: 1px solid rgba(41,215,223,.25);
font-weight: bold;
color: aliceblue;
cursor: pointer;
}
