﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/assets/img/nasa-left.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: #f3f4f7;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.login-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 1;
    position: relative;
}

    .login-container h2 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #333;
    }


    .login-container input {
        padding: 12px 15px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        width: 100%;
    }

        .login-container input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

.login-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .login-btn:hover {
        background-color: #0056b3;
    }

.footer-text {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

    .footer-text a {
        color: #007bff;
        text-decoration: none;
    }

        .footer-text a:hover {
            text-decoration: underline;
        }

.logo {
    margin-bottom: 20px;
}

    .logo img {
        width: 300px;
        display: block;
        margin: 0 auto;
    }

    .borderred {
    border-color: red !important;
}