@keyframes buttonClick {
    from {
        background: #e6e6eb;
    }
    
    5% {
        background: #5f5bff;
    }

    to {
        background: #e6e6eb;
    }
}

textarea {
    width: 100%;
    height: 70vh;

    border: none;
    resize: none;

    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    font-size: 2vh;

    margin-bottom: 5vh;
    
    border-radius: 1vh;
    background: #e6e6eb;
    box-shadow:  5px 5px 10px #c4c4c8,
             -5px -5px 10px #ffffff;

    transition-property: box-shadow;
    transition-duration: 200ms;
}
textarea:focus {
    box-shadow:  0px 0px 0px 0px rgba(0,0,0,0.2);
    outline: none;
}

button {
    width: 30%;
    height: 5vh;

    background-color: #e6e6eb;
    border: none;

    border-radius: 1vh;

    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 2vh;
    color: #5f5bff;

    box-shadow:  5px 5px 10px #c4c4c8,
             -5px -5px 10px #ffffff;

    transition-property: box-shadow;
    transition-duration: 200ms;
}
button:hover {
    z-index: 99;
    /* box-shadow:  0px 0px 0px 0px rgba(0, 0, 0, 0); */
    box-shadow: 10px 10px 15px #ffffff,
                -10px 10px 15px #ffffff,
                10px -10px 15px #ffffff,
                -10px -10px 15px #ffffff;
}
button:active {
    animation-name: buttonClick;
    animation-duration: 0.5s;
}

.errorBar {
    width: calc(30% - 2vh);
    padding: 1vh;
    margin: 0.2%;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    color: black;

    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    font-size: 1.6vh;

    border-radius: 1vh;
    background: #e6e6eb;
}

#container {
    height: calc(90vh - 4vw);
    width: 100%;

    position: relative;
}

#input {
    height: 100%;
    width: 100%;

    position: absolute;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    z-index: 0;
}
#notice {
    height: 100%;
    width: 100%;

    backdrop-filter: saturate(180%) blur(5px);
    -webkit-backdrop-filter: saturate(180%) blur(5px);
    background-color: rgba(255, 255, 255, 0.7);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    opacity: 0%;

    justify-content: center;
    align-items: center;

    transition-property: opacity;
    transition-duration: 200ms;
}

#errorNotice {
    width: calc(30% - 2vh);

    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    font-size: 2vh;
    
    border-radius: 1vh;
    background: #e6e6eb;
    
    margin: 2%;
    padding: 1vh;
}


#generalInformation {
    border: 1px solid #8f8f8f;
    color: #8f8f8f;
}

#importantInformation {
    border: 1px solid #ff1414;
    color: #ff1414;
}

#dangerInformation {
    background-color: #ff1414;
    color: white;

    font-weight: 700;
}