* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #36d1dc, #5b86e5);
    color: #fff;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: auto; /* Ensures space for footer */
    margin-top: 100px;
}

.login-box h1 {
    margin-bottom: 30px;
    text-align: center;
}

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

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

.input-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.input-group button {
    width: 100%;
    padding: 10px;
    background-color: #00c6ff;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.input-group button:hover {
    background-color: #005a8d;
}

.forgot-password {
    text-align: center;
    margin-top: 10px;
}

.forgot-password a {
    color: #00c6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #fff;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    text-align: center;
}

.footer-container a {
    color: #00c6ff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-container a:hover {
    color: #fff;
}


img.logo {
    width: 360px;
}
