﻿/* General Styles */
body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('https://wallpapercave.com/wp/wp5569141.jpg') no-repeat center center fixed;
    background-size: cover;
}

.login-container {
    /*width: 100%;
    max-width: 700px;*/
}

.login-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #ffdd57;
}

.input-container {
    margin-bottom: 20px;
}

.input-textbox {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: transparent;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    align-items: center
}

    .input-textbox:focus {
        border-color: #ffdd57;
        outline: none;
        box-shadow: 0 0 5px #ffdd57;
        text-align: center;
        align-items: center
    }

.btn {
    width: 100%;
    padding: 12px;
    background-color: #ffdd57;
    border: none;
    border-radius: 5px;
    color: #1c1c1c;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn:hover {
        background-color: #ffaa00;
    }

.forgot-container {
    margin-top: 10px;
}

.forgot-password {
    color: #ffdd57;
    text-decoration: none;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.message {
    margin-bottom: 15px;
    font-size: 14px;
}
