body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #0F172A, #2A52BE);
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}
.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5; /* Updated opacity */
    z-index: -1;
    width: 89.1%; /* Updated width */
    height: auto;
}
body::before {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-family: 'Open Sans', sans-serif;
    color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    z-index: 0;
}
.register-container {
    background-color: rgba(47, 57, 73, 0.918); /* Updated background color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7); /* Updated box-shadow */
    text-align: center;
    width: 100%;
    max-width: 350px; /* Updated max-width */
    position: relative;
    color: #F5F5DC;
    z-index: 1;
}
.login-container {
    background-color: rgba(47, 57, 73, 0.918);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    max-width: 350px;
    position: relative;
    z-index: 1;
}
.login-container h2 {
    color: white;
}
.logo {
    width: 80px;
    height: 80px;
    background-color: #2A52BE;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    overflow: hidden;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.corner-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 20px;
}
.register-container input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #334155;
    color: #F5F5DC;
}
.register-button {
    width: 100%;
    background-color: #2A52BE;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
.register-button:hover {
    background-color: #1E3A8A;
}
.links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}
.links a {
    text-decoration: none;
    color: #FFFFFF; /* Updated color */
}
.dropdown {
    position: absolute;
    top: 10px;
    left: 10px;
}

.dropdown-container {
    position: absolute;
    top: 10px;
    left: 10px;
}
.message {
    color: white;
    font-size: 14px;
    margin-top: 10px;
}
.links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.links a {
    text-decoration: none;
    color: white;
}
.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-button {
    width: 100%;
    background-color: #2A52BE;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.login-button:hover {
    background-color: #1E3A8A;
}
@media (max-width: 768px) {
    .register-container {
        width: 90%;
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .register-container {
        width: 100%;
        padding: 15px;
    }
}

/* Hesap Sayfası Stilleri */
.account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.account-header {
    margin-bottom: 2rem;
}

.account-title {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.account-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.account-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.account-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.account-card-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.account-card-title {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 500;
}

.account-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--input-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color-light);
}

.form-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-1px);
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .account-container {
        padding: 1rem;
    }
    
    .account-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .account-card {
        padding: 1.5rem;
    }
    
    .account-title {
        font-size: 1.5rem;
    }
    
    .account-subtitle {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}