@charset "UTF-8";

/* Alert 메시지 애니메이션 */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert_message {
    animation: slideDown 0.3s ease;
}

hr {
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-bottom-width: 0;
}

hr:first-of-type {
    margin-top: 10vh;
}

form.login_form {
    position: relative;
    width: 360px;
    height: fit-content;
    overflow-x: hidden;
    margin: 20px auto 30px auto;
}

label {
    float: left;
    width: fit-content;
    height: fit-content;
    margin: 30px 0 0 10px;
    line-height: 100%;
    font-weight: bolder;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 16px;
}

input.user_name {
    float: left;
    width: 318px;
    height: 15px;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.3rem;
    border-width: 0.1rem;
    border-color: rgb(200, 200, 200);
    border-style: solid;
    letter-spacing: 0.2rem;
    font-size: 16px;
}

input.password_input {
    float: left;
    width: 318px;
    height: 15px;
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.3rem;
    border-width: 0.1rem;
    border-color: rgb(200, 200, 200);
    border-style: solid;
    letter-spacing: 0.2rem;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-width: 0.1rem;
    border-color: #2196F3;
    background-color: #e2f2ff;
}

button {
    float: right;
    width: fit-content;
    height: fit-content;
    padding: 1.3rem;
    border-radius: 0.3rem;
    border-color: transparent;
    background-color: rgb(41, 41, 41);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    margin: 40px 10px 20px 0;
}

.login_form > a {
    float: left;
    color: #2196F3;
    text-decoration: none;
    clear: both;
    text-transform: uppercase;
}

.login_form > a:hover {
    text-decoration: underline;
}

.url_link_membership {
    margin: 35px 0 0 0;
}