﻿body {
    background-color: #FFE1E1;
    background-image: url(../images/CNSC_Logobackground.png);
    background-repeat: repeat;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.login-container {
    width: 350px;
    padding: 40px 30px 30px 30px;
    background: #9D0000;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .login-container h2 {
        text-align: center;
        margin-bottom: 28px;
        color: #fff;
        font-weight: 600;
        margin: 0px 0px 20px;
    }

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 15px;
}

.asp-textbox {
    width: 93%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    background: #FFF0F0;
    transition: border-color 0.2s;
}

    .asp-textbox:focus {
        border-color: #0078d4;
        outline: none;
        background: #fff;
    }

.login-btn {
    width: 100%;
    padding: 12px 0;
    background: #ff5722;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

    .login-btn:hover {
        background: #ff9800;
    }


