/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jun 11, 2025, 3:17:10 PM
    Author     : Soroar
*/

/* Login CSS */
.login-container {
    max-width: 400px;
    margin: 80px auto;
    background: #111;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

.login-container h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
}

.login-container label {
    display: block;
    margin: 10px 0 5px;
    color: #ccc;
    font-weight: bold;
}

.login-container input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #222;
    color: #fff;
}

.login-container button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.login-container button:hover {
    background: #e64040;
}

.login-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
    color: #888;
}

.verify-container {
    max-width: 700px;
    margin: 100px auto;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

.verify-container h1 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 2.2rem;
}

.verify-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #aaa;
}

.verify-container .note {
    margin-top: 20px;
    color: #ff4d4d;
    font-weight: bold;
}