/* style.css */
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, #019861, #0b7cfeff); /* Cyan and Blue from Secondary Palette */
    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 #019861;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #0b7cfeff; /* Blue from Secondary Palette */
}

input[type="submit"] {
    background-color: #019861;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #f32571; /* Pink from Principal Palette */
}

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

/* Style for the forgot password link */
.forgot-password {
    margin-top: 15px;
    font-size: 0.9em; /* Smaller font size */
}

.forgot-password a {
    color: #783389ff; /* Purple link color from Principal Palette */
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
