/* Auth sayfaları için CSS */

/* Login sayfası */
.login-bg {
    height: 100%;
    width: 100%;
}

.login-bg img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.login-title {
    color: #24695C;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.input-group-text {
    background-color: #fff;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.btn-success {
    background-color: #24695C;
    border-color: #24695C;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Password strength indicator */
.pwindicator {
    margin-top: 10px;
    width: 100%;
}

.pwindicator .bar {
    height: 6px;
    border-radius: 3px;
}

.pwindicator.pw-very-weak .bar {
    background: #d00;
    width: 10%;
}

.pwindicator.pw-weak .bar {
    background: #d00;
    width: 30%;
}

.pwindicator.pw-medium .bar {
    background: #fc0;
    width: 60%;
}

.pwindicator.pw-strong .bar {
    background: #0c0;
    width: 80%;
}

.pwindicator.pw-very-strong .bar {
    background: #0c0;
    width: 100%;
}

.pwindicator .label {
    font-size: 12px;
    color: #6c757d;
}

/* Custom File Input */
.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Gözat";
}

.custom-file-label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Form Grupları */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
}

.form-group i.mr-1 {
    width: 16px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-content {
        padding: 1.5rem;
    }
}
