body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Auth Sayfası Özel Konteynır */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Tam ortalaması için */
    width: 100%;
}

.auth-card {
    background: rgba(255, 255, 255, 0.05) !important; 
    backdrop-filter: blur(15px) !important; 
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 60px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px; /* Login kartındaki ideal genişlik */
    box-sizing: border-box;
}

.auth-title {
    color: white !important;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Mesaj Kutusu Tasarımı */
.glass-message-container {
    width: 100%;
    max-width: 280px; /* Form ile tam hizada olması için */
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glass-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 118, 117, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
}

.message-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.glass-message p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: white;
}

.close-btn {
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    margin-left: 10px;
}

/* Input Kutuları ve Form */
.auth-form {
    width: 280px; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #7b61ff; 
    background: rgba(255, 255, 255, 0.1);
}

/* Let's Go Butonu */
.btn-primary {
    background: #7b61ff;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%; 
    padding: 12px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #6246ea;
}

/* Alt Kısım (Hesabın varsa Giriş Yap) */
.auth-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
    width: 100%;
    max-width: 280px; 
    text-align: center;
}

.auth-footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.btn-outline-small {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #7b61ff;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: inline-block;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-small:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}