﻿
:root {
    --primary-color: #073980;
    --primary-hover: #0a4da6;
    --secondary-color: #ffffff;
    --accent-color: #ff6b35;
    --text-dark: #333333;
    --text-light: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-dark);
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.login-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: white;
    width: 100%;
    max-width: 450px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .login-card:hover {
        transform: translateY(-5px);
    }

.card-header {
    background-color: white;
    padding: 30px 20px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-container {
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 15px;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.login-title {
    font-weight: 700;
    color: #073980;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.login-subtitle {
    color: #073980;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-body {
    padding: 30px;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(7, 57, 128, 0.15);
    }

.btn-success {
    background-color: #073980;
    border: none;
    border-radius: 30px;
    padding: 12px 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: white;
}

    .btn-success:hover {
        background-color: #204d8d;
        transform: translateY(-2px);
        color: white;
    }

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }
.create-account {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
    .create-account:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }

    .alert {
        border-radius: var(--border-radius);
        padding: 15px;
        margin-top: 20px;
        font-weight: 500;
    }

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: var(--danger);
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: var(--success);
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 30px;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

    .footer-link:hover {
        color: var(--accent-color);
    }

.modal-content {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.modal-header {
    background-color: limegreen;
    color: white;
    border-top-left-radius: calc(var(--border-radius) - 1px);
    border-top-right-radius: calc(var(--border-radius) - 1px);
}

.modal-body {
    padding: 25px;
}

.modal-title {
    font-weight: 600;
}

.close {
    color: white;
    opacity: 1;
}

.input-icon-container {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: var(--text-light);
}

.icon-input {
    padding-left: 45px;
}

/* Added center alignment for full screen */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}


