* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

body {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    left: 20px;
}

.navbar {
    background-color: #030e33;
    padding: 20px;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1000;
    text-align: center;
}


.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background-color: #fff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); 
    max-width: 500px; 
    width: 100%;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 32px; 
    text-transform: uppercase;
    letter-spacing: 3px;
}

.input-group {
    margin-bottom: 30px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #007BFF;
}

.input-group button {
    width: 100%;
    padding: 15px; 
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 8px; 
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.input-group button:hover {
    background-color: #0056b3;
}

.extras {
    margin-top: 20px;
}

.extras a {
    color: #007BFF;
    text-decoration: none;
    font-size: 16px;
}

.extras a:hover {
    text-decoration: underline;
}
