body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #04011b 0%, #16213e 50%, #07075b 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    justify-content: center;
    margin-bottom: 30px;
    color: #333;
}

.logo img {
    height: 120px;
    width: auto;
}

.logo .square {
    width: 10px;
    height: 10px;
    background-color: #ff6b35;
    margin-right: 10px;
    border-radius: 2px;
    display: none;
}

.main-content {
    max-width: 400px;
    width: 90%;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}


.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.login-form label {
    font-size: 1.1rem;
    font-weight: bold;
}

.login-form input {
    padding: 12px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.forgot {
    text-align: right;
    font-size: 0.8rem;
}

.forgot a {
    color: #555;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

.btn-login {
    background: #050337;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    font-weight: 500;
}

.btn-login:hover {
    background: #0a0540;
}

.error {
    color: red;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-align: center;
}
