﻿/* Breadcrumb */
.breadcrumb {
    /* padding: 20px 0;*/
    margin-bottom: 30px;
}

    .breadcrumb a {
        color: #96c93e;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: #7ab317;
        }

    .breadcrumb span {
        color: #7f8c8d;
        margin: 0 10px;
    }

.password-strength {
    margin-top: 10px;
    height: 6px;
    background-color: #e8f5e8;
    border-radius: 3px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.strength-weak {
    background-color: #e74c3c;
    width: 33%;
}

.strength-medium {
    background-color: #f39c12;
    width: 66%;
}

.strength-strong {
    background-color: #27ae60;
    width: 100%;
}

/* .energy-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            z-index: -2;
        }

        .energy-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
            opacity: 0.1;
        }*/

/* .energy-particles {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            top: 0;
            left: 0;
        }

        .energy-particle {
            position: absolute;
            border-radius: 50%;
            animation: energy-float 8s ease-in-out infinite;
        }

        @keyframes energy-float {
            0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
            33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
            66% { transform: translateY(20px) translateX(-20px) rotate(240deg); }
        }*/

.container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
    margin-bottom: 40px;
    overflow: hidden;
}

    .login-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #96c93e, #7ab317, #96c93e);
        background-size: 200% 100%;
        animation: energy-flow 3s linear infinite;
    }

@keyframes energy-flow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.login-container:hover {
    transform: translateY(-5px);
}

.welcome-header {
    text-align: center;
    margin-bottom: 40px;
}

.avatarV1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 35px rgba(150, 201, 62, 0.4);
    position: relative;
    overflow: hidden;
}

    .avatarV1::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        animation: shine 3s ease-in-out infinite;
    }

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.avatarV1 i {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.welcome-header h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #2c3e50, #96c93e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 800;
}

.welcome-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .form-label i {
        color: #96c93e;
        font-size: 1rem;
    }

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(248, 251, 243, 0.8);
    backdrop-filter: blur(10px);
}

    .form-input:focus {
        outline: none;
        border-color: #96c93e;
        background: white;
        box-shadow: 0 8px 25px rgba(150, 201, 62, 0.2);
        transform: translateY(-2px);
    }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.remember-me {
    display: flex;
    align-items: center;
}

    .remember-me input {
        margin-right: 8px;
        transform: scale(1.3);
        accent-color: #96c93e;
    }

    .remember-me label {
        color: #5a6c7d;
        font-size: 0.95rem;
    }

.forgot-password {
    color: #96c93e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .forgot-password:hover {
        text-decoration: underline;
        transform: translateX(2px);
    }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #96c93e, #7ab317);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(150, 201, 62, 0.4);
    position: relative;
    overflow: hidden;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(150, 201, 62, 0.6);
    }

        .submit-btn:hover::before {
            left: 100%;
        }

.auth-alt {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(232, 245, 232, 0.5);
}

    .auth-alt p {
        color: #7f8c8d;
        margin-bottom: 15px;
    }

.register-link {
    color: #96c93e;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #96c93e;
    border-radius: 25px;
    background: rgba(150, 201, 62, 0.1);
}

    .register-link:hover {
        gap: 12px;
        background: #96c93e;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(150, 201, 62, 0.3);
    }

.energy-mission {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
    text-align: center;
}

    .energy-mission h2 {
        font-size: 1.8rem;
        background: linear-gradient(135deg, #2c3e50, #96c93e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        font-weight: 800;
    }

.mission-text {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.energy-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: rgba(248, 251, 243, 0.8);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .value-card:hover {
        transform: translateY(-5px);
        border-color: #96c93e;
        box-shadow: 0 10px 25px rgba(150, 201, 62, 0.2);
    }

    .value-card i {
        font-size: 2.5rem;
        color: #96c93e;
        margin-bottom: 15px;
    }

    .value-card h3 {
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .value-card p {
        color: #5a6c7d;
        line-height: 1.6;
        font-size: 0.95rem;
    }

@media (max-width: 768px) {
    .login-container, .energy-mission {
        padding: 30px 25px;
        margin: 20px;
    }

    .welcome-header h1 {
        font-size: 1.8rem;
    }

    .energy-values {
        grid-template-columns: 1fr;
    }
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

    .submit-btn.loading i {
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
