@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Montserrat', sans-serif;
}
.form-container {
    max-width: 600px;
    margin: auto;
}
.password-toggle {
    cursor: pointer;
    color: #6c757d;
}
.password-toggle:hover {
    color: #495057;
}
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}
/* Hata durumunda input stilleri */
.form-control.is-invalid,
.form-check-input.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    font-size: 0.875em;
    color: #dc3545;
    margin-top: 0.25rem;
}

/* Form grupları arası boşluk */
.form-group + .form-group {
    margin-top: 1rem;
}

/* Input focus efekti */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.container-fluid{
    background-color: #2c3e50;
}

/* Başlıklar için özel font ayarları */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Form elemanları */
.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.form-control {
    font-family: 'Montserrat', sans-serif;
}

/* Butonlar */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Card stilleri */
.card {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Form validation stilleri */
.form-control:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .card {
        margin: 1rem;
    }
}