body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.login-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    padding: 30px;
    position: relative;
}

.login-container::before {
    content: '';
    background: linear-gradient(45deg, #007bff, #0056b3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.logo {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input[type="email"],
input[type="password"] {
    padding: 10px;
    border: none;
    border-bottom: 2px solid #007bff;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #0056b3;
}

input[type="submit"] {
    background-color: #00B48D;
    display: block;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #F32571;
}

/* Apply the Google Font to the "TWL Roster" text */
.page-title {
    font-family: 'Open Sans', sans-serif;
    padding: 20px;
    color: #0056b3;
    text-align: center;
}

.download-button {
    display: block;
    width: 83%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #663399;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #4b2b8b;
}