@charset "utf-8";

@import url(./reset.css);

.container {
    width: min(100% - 30px, 1280px);
    margin-inline: auto;
}

main {
    display: flex;
}

.banner {
    width: 50%;
    height: 100dvh;
    background: url(../img/index-bg.jpg) bottom / cover no-repeat;
}

h1 {
    color: #0071eb;
    font-size: 42px;
    font-weight: 600;
    margin-top: 48px;
    margin-left: 80px;
}

.login-section {
    width: 50%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    color: #4e5c86;
}

input {
    background-color: #fafafa;
    width: 100%;
    border: 0.5px solid #000;
    border-radius: 5px;
    padding: 10px 15px;
}

.checkbox {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}

.checkbox input, .login-button {
    cursor: pointer;
}

.checkbox p, .checkbox a {
    font-size: 12px;
    margin-top: 2px;
}

.checkbox p {
    padding-left: 5px;
    width: 68%;
}

.checkbox a {
    color: #949494;
    transition: all 0.30s ease-in-out;
}

.checkbox a:hover {
    color: #007aff;
}

.mail-input {
    margin-top: 40px;
}

.mail-input input {
    margin: 5px 0 15px 0;
}

.login-button {
    width: 100%;
    padding: 10px 0;
    background-color: #007aff;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.login-button:hover {
    background-color: #0071eb;
}

.line-break {
    margin: 30px 0;
    color: #949494;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.line-one, .line-two {
    border-bottom: 1px solid #bbb;
    height: 1px;
    width: 170px;
    margin-top: 9px;
}

.v-signin {
    display: flex;
    margin-bottom: 60px;
}

.v-signin a {
    font-size: 14px;
    color: #4e5c86;
    width: 50%;
    padding: 10px 0;
    text-align: center;
    border: 0.5px solid #4e5c86;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.v-signin a:hover {
    color: #007aff;
}

.v-signin a:first-child {
    margin-right: 5px;
}

.v-signin i {
    margin-top: 7px;
    margin-right: 5px;
}

.signup {
    display: flex;
    justify-content: center;
}

.signup a {
    color: #007aff;
    margin-left: 5px;
}

.error-message {
    visibility: hidden;
    color: #f00;
    font-size: 12px;
    height: 18px;
    padding-bottom: 10px;
    margin-top: 5px;
}

.error-message.is-visible {
    visibility: visible;
    opacity: 1;
}