﻿
/* Global Styles */
:root {
    --primary: #07254f;
    --secondary: #25508c;
    --accent: #ff6b6b;
    --light: #ffffff;
    --dark: #222222;
    --text: #555555;
    --gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-heading {
    margin-bottom: 40px;
}

    .section-heading .subtitle {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        color: var(--accent);
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .section-heading .title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.3;
        position: relative;
        padding-bottom: 15px;
    }

        .section-heading .title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
        }

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--light);
}

    .btn-primary:hover {
        background: #ff5252;
        color: var(--light);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

/* Login Hero */
.login-hero {
    padding: 150px 0 100px;
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--light);
    text-align: center;
}

    .login-hero .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--light);
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

    .breadcrumb-item a {
        color: var(--light);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .breadcrumb-item a:hover {
            color: var(--accent);
        }

    .breadcrumb-item.active {
        color: var(--accent);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.8);
    }

/* Login Grid */
.login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 100px 0;
}

/* Login Benefits */
.login-benefits {
    padding-right: 30px;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    background: var(--gray);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-content p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

/* Login Form */
.login-form-container {
    background: var(--light);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.login-form .form-control {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .login-form .form-control:focus {
        outline: none;
        border-color: var(--accent);
    }

.login-form .form-label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.login-form .form-control:focus + .form-label,
.login-form .form-control:not(:placeholder-shown) + .form-label {
    top: -15px;
    font-size: 13px;
    color: var(--accent);
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 12px;
    color: #999;
    cursor: pointer;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.forgot-link {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 15px;
}

    .forgot-link:hover {
        color: var(--accent);
    }

.register-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .register-link:hover {
        text-decoration: underline;
    }

/* Responsive Styles */
@media (max-width: 991px) {
    .login-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 0;
    }

    .login-benefits {
        padding-right: 0;
    }

    .login-hero .hero-content h1 {
        font-size: 36px;
    }

    .section-heading .title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .login-hero {
        padding: 120px 0 80px;
    }

        .login-hero .hero-content h1 {
            font-size: 28px;
        }

    .section-heading .title {
        font-size: 26px;
    }

    .login-form-container {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .login-hero .hero-content h1 {
        font-size: 24px;
    }

    .breadcrumb-item {
        font-size: 14px;
    }

    .login-form-container {
        padding: 20px;
    }
}
