/* 인증 페이지 스타일 */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #222222;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.auth-box {
    width: 400px;
    max-width: 90%;
    background-color: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    background-color: #222;
}

.auth-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.auth-logo h1 {
    margin: 0;
    font-size: 24px;
    color: #ececec;
}

.auth-form {
    padding: 30px;
}

.auth-form h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #ececec;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ececec;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #2f2f2f;
    color: #ececec;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    -webkit-text-security: none;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    background: #383838;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background-color: #4b4b4b;
    color: #ececec;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.auth-btn:hover {
    background-color: #5a5a5a;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #ececec;
}

.auth-links a {
    color: #7ab7ff;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.auth-message.error {
    background-color: rgba(255, 87, 87, 0.2);
    color: #ff5757;
}

.auth-message.success {
    background-color: rgba(87, 255, 87, 0.2);
    color: #57ff57;
}
