@import "reset.css";

#login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1920px;
    height: 100vh;
    background-color: #f5f5f5;
    overflow: auto;
}

.login-wrap {
    display: flex;
    flex-direction: row;
    width: 1000px;
    height: 630px;
    box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.1);
}

.login-box {
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 204px 85px 0;
    box-sizing: border-box;
    gap: 18px 0;
    width: 500px;
    height: 630px;
    background-color: #ffffff;
    position: relative;
}

.login-box h2 {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
}

.login-box table {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box table tr input {
    width: 330px;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
    padding-left: 12px;
    font-size: 14px;
}

.login-box table tr input::placeholder {
    color: #cacaca;
}

.login-box table td.error {
    outline: 1px solid #ED1B23;
    box-sizing: border-box;
}

.login-box table td.error input,
.login-box table td.error button {
    border: none !important;
}

.login-box table tr:nth-child(2) td {
    display: flex;
    flex-direction: row;
    margin: 10px 0 20px 0;
}

.login-box table tr:nth-child(2) td input {
    width: 298px;
    border-right: 0;
}

.lock-icon-area {
    width: 32px;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid #D9D9D9;
    border-left: 0;
    cursor: pointer;
}
.login_btn {
    width: 330px;
    height: 50px;
    text-align: center;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    background-color: #ED1B23;
}

.lock-icon:hover {
    content: url(../img/lock2.png);
}
.lock-open-icon {
    content: url(../img/lock3.png);
}

.login-box table tr:nth-child(3) td button {
    width: 330px;
    height: 50px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    background-color: #ed1b23;
}

.login-box table tr:nth-child(3) td button:hover {
    background-color: #ff1f27;
}

.login-box p {
    color: #ed1b23;
    font-size: 14px;
    position: absolute;
    top: 488px;
}

.login-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px 0;
    width: 500px;
    height: 630px;
    background-color: #23282D;
}

.login-title h1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-title p {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
}