body {
    background-color: #261338;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0; /* Remove margin to allow full height */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: space-between; /* Space between logo and container */
}

.logo {
    margin-top: 90px; /* Add some space from the top */
    width: 130px;
    height: 35px;
}

.container {
    width: 90%;
    max-width: 400px;
    margin-bottom: 130px; /* Add some space from the bottom */
}

.login-box {
    background-color: #071824;
    border: 2px solid #00b4ff;
    border-radius: 10px;
    padding: 20px;
    z-index: 1;
    align-items: center;
}

.navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.back, .demo-login {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
}

.demo-login {
    background-color:#58cdff;
    padding: 5px 10px;
    border-radius: 25px;
    color: #000;
    margin-top: 1px;
    font-size: 14px;
}

h1 {
    margin: 0 0 10px;
    font-size: 30px;
    color: #ccc;
    text-align: center;
}

p {
    margin: 0 0 20px;
    font-size: 19px;
    color: #ccc;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
}

input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    color: #000;
}

.forgot {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 30px;
    text-align: right; /* Center the forgot link */
}

.login-btn {
    width: 50%;
    padding: 10px;
    background-color:#58cdff;
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    margin: 0 auto; /* Center the button */
    display: block; /* Make the button a block element */
}

.login-btn:hover {
    background-color: #00cc00;
}

.signup {
    text-align: center;
    font-size: 14px;
}

.signup a {
    color: #00b4ff;
    text-decoration: none;
}

.disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #ccc;
    text-align: center;
}