﻿.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url('/Images/Blurry_Background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-welcome-title {
    font-size: 28px;
    color: #003366;
    margin-bottom: 10px;
}

.login-welcome-subtitle {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}

.navigation-button {
    margin-top: 5px;
    color: #F4F9FF;
    font-size: 15px;
    text-decoration: none;
    background-color: #003366;
    border: 1px solid #F4F9FF; /* thin white border */
    border-radius: 4px; /* optional: slight round corners */
    display: inline-flex;
    align-items: center;
    gap: 3px; /* space between icon and text */
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .navigation-button:hover {
        background-color: #0055aa;
    }


.home-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: url('/Images/Blurry_Background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.home-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.home-title {
    font-size: 38px;
    color: #003366;
    margin-bottom: 30px;
}

.home-subtitle {
    font-size: 16px;
    color: #003366;
    font-style:italic;
}