﻿body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: linear-gradient(to bottom, #F4F7F8, #E9EEF1);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Geogtq-Lg';
    letter-spacing: 1px;
}

@font-face {
    font-family: 'Geogtq-Lg';
    src: url('../Fonts/Geogtq-Lg.woff2') format('woff2');
}

.login-container {
    width: 420px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #0F6F73;
}

.login-card {
    background: #2F3438;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #0F6F73, #14A3A6);
    padding: 25px;
    color: white;
}

    .login-header h2 {
        margin: 0;
        font-weight: 600;
    }

    .login-header p {
        margin: 5px 0 0;
        font-size: 14px;
        opacity: 0.9;
    }

.login-body {
    padding: 30px;
}

.input-group {
    margin-bottom: 18px;
}

    .input-group input {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #D0D7DC;
        background: #E9EEF1;
        font-size: 14px;
        outline: none;
        transition: 0.2s;
    }

        .input-group input:focus {
            border-color: #14A3A6;
            box-shadow: 0 0 0 3px rgba(20,163,166,0.15);
            background: #ffffff;
        }

.button-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-primary {
    flex: 1;
    background: #0F6F73;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-primary:hover {
        background: #0C5A5D;
    }

.btn-secondary {
    flex: 1;
    background: transparent;
    border: 1px solid #0F6F73;
    color: #0F6F73;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-secondary:hover {
        background: #0F6F73;
        color: white;
    }

.forgot {
    margin-top: 15px;
    font-size: 13px;
    text-align: center;
}

    .forgot a {
        color: #14A3A6;
        text-decoration: none;
    }

        .forgot a:hover {
            text-decoration: underline;
        }

.portal-title {
    text-align: center;
    margin-bottom: 25px;
}

    .portal-title h1 {
        margin: 0;
        font-size: 28px;
        color: #1F2A30;
    }

    .portal-title span {
        color: #6B7C85;
        font-size: 18px;
    }
