body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #00050a; /* Deep black/blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
}

.main-logo {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
}

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-wrapper {
    background-color: #121f2b; /* Darker input background */
    border: 1px solid #2a3a4a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 10px;
}

.input-wrapper input {
    background: transparent;
    border: none;
    color: white;
    padding-left: 10px;
    width: 100%;
    outline: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 25px;
    align-items: center;
}

.forgot-link {
    color: #ff9900;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, #ff5e00, #ff003c); /* Match the red/orange button */
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.footer-text {
    margin-top: 30px;
    background-color: #0d1b2a;
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
}