/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 2025. 10. 29., 오전 2:40:42
    Author     : Haruki
*/
/* member.css — 로그인 / 회원가입 전용 */
@import url("common.css");

html {
    overflow-y: scroll;
}

.login-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 900px;
    height: 500px;
    margin: 60px auto;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* ===== 왼쪽 로그인 폼 ===== */
.login-form {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form h2 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #333;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #2b49e3;
    color: #fff;
    margin: 5px 0;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #2137b5;
}

.login-fieldset {
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    padding: 20px 25px;
    background: #fafafa;
    min-height: 305px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.links {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.links a {
    color: #2b49e3;
    text-decoration: none;
    margin: 0 5px;
}

.links a:hover {
    text-decoration: underline;
}

/* ===== 오른쪽 배너 ===== */
.login-banner {
    flex: 1;
    background-color: #f5f6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #d1d1d1;
}

.login-banner img {
    max-width: 80%;
    border-radius: 4px;
}

.form-error {
    color: #dc3545;
    margin: 5px;
    font-size: 14px;
    font-weight: 400;
    min-height: 1.5em;
}
