﻿.carousel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

    .carousel-track img {
        width: 100%;
        flex-shrink: 0;
        object-fit: fill;
        height: 250px;
    }

.carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
}

    .carousel-buttons button {
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        border-radius: 50%;
        width: 35px;
        height: 35px;
    }

.login-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
}

    .login-form-section h1 {
        color: #4A5568;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        background: linear-gradient(45deg, #8B5CF6, #EC4899);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .login-form-section form {
        width: 100%;
        max-width: 400px;
    }

.form-group {
    margin-bottom: 1.5rem;
}

.control-label {
    display: block;
    color: #4A5568;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

    .form-control:focus {
        outline: none;
        /*border-color: #EC4899;*/
        box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
        background: rgba(255, 255, 255, 1);
    }

.btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #EC4899, #F97316);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    }

    .btn-primary:active {
        transform: translateY(0);
    }

.recovery-link {
    display: block;
    text-align: center;
    margin: 1rem 0;
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .recovery-link:hover {
        color: #EC4899;
        text-decoration: underline;
    }

.back-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #6B7280;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .back-link:hover {
        color: #8B5CF6;
        text-decoration: underline;
    }

.text-danger {
    color: #DC2626;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}
