* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Login Box */
.loginPage {
    width: 380px;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Heading */
.loginPage h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
    font-size: 26px;
}

/* Input Container */
.loginPage > div {
    margin-bottom: 20px;
}

/* Labels */
.loginPage label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Inputs */
.loginPage input {
    width: 100%;
    height: 45px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}

.loginPage input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

/* Login Button */
.loginPage > button {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 8px;
    background: #667eea;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.loginPage > button:hover {
    background: #5568d9;
    transform: translateY(-1px);
}

/* Admin Text */
.loginPage span {
    display: block;
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

/* Contact Admin Button */
#admin {
    width: 100%;
    height: 40px;
    border: 1px solid #667eea;
    border-radius: 8px;
    background: white;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#admin:hover {
    background: #667eea;
    color: white;
}

/* Loading */
.loading {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: #667eea;
    z-index: 9999;
}

/* Mobile */
@media (max-width: 480px) {

    body {
        padding: 20px;
    }

    .loginPage {
        width: 100%;
        max-width: 380px;
        padding: 30px 22px;
    }

    .loginPage h2 {
        font-size: 23px;
    }
}