* {
    box-sizing: border-box; /* Fixes padding/width issues */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #261338;
    background-image: linear-gradient(135deg, #261338 0%, #1a0b26 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.logo {
    margin-top: 60px;
    width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    margin-top: 40px;
}

.login-box {
    background-color: #071824;
    border: 1px solid #00b4ff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.back {
    color: #00b4ff;
    text-decoration: none;
    font-size: 14px;
}

.demo-login {
    background-color: #039d90;
    padding: 6px 15px;
    border-radius: 20px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-size: 12px;
}

h2 {
    margin: 0 0 10px;
    font-size: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #1a2a35;
    color: #fff;
    outline: none;
}

input:focus {
    border-color: #00b4ff;
}

.forgot {
    color: #00b4ff;
    text-decoration: none;
    font-size: 13px;
    display: block;
    text-align: right;
    margin-bottom: 20px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #039d90;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background-color: #027a70;
    box-shadow: 0 0 15px rgba(3, 157, 144, 0.4);
}

.signup {
    margin-top: 25px;
    font-size: 14px;
}

.signup a {
    color: #00b4ff;
    font-weight: bold;
}

.disclaimer-area {
    margin-top: auto;
    padding: 20px;
    color: #666;
    font-size: 12px;
}
