/* Öğrenci Kayıt Sayfası Stilleri */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-color);
    padding: 20px;
    background-image: url('../images/login-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.register-form {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 600px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.register-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.register-header img {
    width: 220px;
    margin-bottom: 1rem;
}

.register-header h2 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.register-header p {
    color: var(--medium-color);
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 4px;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--medium-color);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--medium-color);
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.alert-success {
    background-color: rgba(105, 197, 160, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(105, 197, 160, 0.2);
}

/* Form elemanları için biraz ekstra stil */
select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

select.form-control:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .register-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .register-form {
        padding: 1.5rem;
    }
    
    .register-header img {
        width: 180px;
    }
}