body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    color: #fff;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

p {
    color: #fff;
    margin: 10px;
    text-align: center;
}

.header {
    display: grid;
    grid-template-columns: auto 1fr auto; 
    align-items: center;
    padding: 20px;
}

.logo {
    grid-column: 1; 
    height: 50px; 
}

.signout-link {
    grid-column: 3; 
    color: #0175d8;
    text-decoration: none;
    font-weight: bold;
    text-align: right;
}

.login-container {
    color: #000;
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-title {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-control {
    width: 90%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 5px 0;
}

.error-text {
    color: #ff0000;
    margin-bottom: 15px;
}

.login-button {
    background-color: #0175d8;
    display: inline-block;
    color: #ffffff;
    width: 90%;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.login-button:hover,
.login-button:focus {
    background-color: #0164bb;
    text-decoration: none;
    outline: none;
}

.forgot-password-link {
    display: block;
    margin-bottom: 20px;
    color: #0175d8;
    text-decoration: none;
}

.divider {
    font-weight: bold;
    margin: 20px 0;
}

.social-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth0-login-button {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    border: black;
    padding: 12px 30px;
    font-size: 16px; 
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth0-logo {
    width: 150px;
}

.forgot-password {
    text-align: center;
    color: #ffffff;
}

.password-reset-button {
    background-color: #0175d8;
    display: inline;
    color: #ffffff;
    width: 20%;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.password-reset-button:hover,
.password-reset-button:focus {
    background-color: #0164bb;
    text-decoration: none;
    outline: none;
}

.change-password {
    text-align: center;
}

.change-password-button {
    background-color: #0175d8;
    display: inline-block;
    color: #ffffff;
    width: 20%;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.change-password-button:hover,
.change-password-button:focus {
    background-color: #0164bb;
    text-decoration: none;
    outline: none;
}