﻿body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.login-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}



.login-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.divider {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 20px auto;
    width: 30%;
}

.form-group {
    margin-top: 20px;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.validation {
    font-size: 12px;
    color: red;
    margin-top: 5px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-top: 10px;
}

.forgot-link {
    color: #007bff;
    text-decoration: none;
    font-size: 13px;
}

.btn-login {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #4fa3dd;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.signup-section {
    margin-top: 20px;
    font-size: 14px;
}

.btn-signup {
    background-color: #f28b30;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    margin-left: 10px;
    font-size: 13px;
}

.banner-section {
    margin-top: 30px;
    text-align: center;
}

.login-banner {
    max-width: 100% !important; /*  강제: 부모에 맞게 */
    height: auto !important;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
