/* Login 페이지 스타일 */
.container {	
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    margin: 0 auto;    
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.login-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.login-section {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.form-options-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-options-left label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.form-options-left input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

.form-options-right {
    display: flex;
    gap: 8px;
}

.form-options-right a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.form-options-right a:hover {
    color: #333;
    text-decoration: underline;
}

.form-options-right a:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #ddd;
    margin-left: 8px;
    vertical-align: middle;
}

#loginForm>.btn-login {
    width: 100%;
    padding: 14px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;    
}

.btn-login:hover {
    background-color: #555;
}

.utility-links {
    text-align: center;
    margin-bottom: 30px;
    font-size: 13px;
}

.utility-links a {
    color: #666;
    text-decoration: none;
}

.utility-links a:hover {
    color: #333;
    text-decoration: underline;
}

.utility-links a:not(:last-child)::after {
    content: '|';
    margin: 0 10px;
    color: #ddd;
}

.signup-section {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.signup-section h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.signup-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-signup {
    display: inline-block;
    padding: 14px 40px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-signup:hover {
    background-color: #555;
}

.error-message, .success-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .login-section {
        padding: 30px 20px;
    }
    
    .signup-section {
        padding: 25px 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .form-options-right {
        flex-direction: column;
        gap: 5px;
    }
    
    .form-options-right a:not(:last-child)::after {
        display: none;
    }
    
    .utility-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .utility-links a:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    .login-header h1 {
        font-size: 20px;
    }
    
    .login-section {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .signup-section {
        padding: 20px 15px;
    }
    
    .signup-section h3 {
        font-size: 16px;
    }
    
    .btn-signup {
        padding: 12px 30px;
        font-size: 14px;
    }
}
