/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jan 24, 2026, 6:38:49 PM
    Author     : Abdi
*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* PAGE BACKGROUND */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2a2e, #143a3f);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CENTER CONTAINER */
.login-container {
    width: 100%;
    padding: 16px;
}

/* LOGIN CARD */
.login-card {
    max-width: 380px;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}

/* LOGO */
.logo-area img {
    width: 120px;
    margin-bottom: 12px;
}

/* BRAND TITLE */
.brand-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1f2937;
}

.brand-title span {
    color: #c9a44d; /* gold tone */
    font-weight: 800;
}

/* TAGLINE */
.brand-tagline {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 24px;
}

/* FORM */
.login-form .form-group {
    margin-bottom: 16px;
}

.login-form input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    outline: none;
}

.login-form input:focus {
    border-color: #c9a44d;
}

/* BUTTON */
.login-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #c9a44d;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-btn:hover {
    background: #b8953f;
}

/* FOOTER */
.login-footer {
    margin-top: 22px;
    font-size: 0.8rem;
    color: #9ca3af;
}

.login-footer strong {
    color: #c9a44d;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.caps-warning {
    display: none;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #b45309; /* elegant warning tone */
}


/* MOBILE OPTIMIZATION */
@media (max-width: 480px) {
    .login-card {
        padding: 26px 20px;
    }

    .brand-title {
        font-size: 1.7rem;
    }
}


