.main-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4rem;
}
  
.content-container {
    max-width: 24rem;
    width: 100%;
    color: #718096;
    margin-top: 1.25rem;
}

.login_header {
    text-align: center;
    padding-bottom: 1.25rem;
    margin-top: 1.25rem;
}

.logo-container {
    text-align: center;
    padding-bottom: 1.25rem;
}

.logo {
    margin: 0 auto;
}

.title-container {
    margin-top: 1.25rem;
}

.title {
    color: #2a4365;
    line-height: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: system-ui;
}

@media (min-width: 640px) {
    .title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}
  
.button-primary {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-top: 1.25rem;
    color: #fff;
    font-weight: 500;
    font-family: system-ui;
    text-decoration: none;
    background-color: #1e3a8a;
    text-align: center;
    border-radius: 0.5rem;
    transition: background-color 0.15s ease-in-out;
}

.button-primary:hover {
    background-color: #1e40af;
}

.button-primary:active {
    background-color: #1e3a8a;
}

.logout-button {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-top: 1.25rem;
    color: #1e3a8a;
    font-weight: 500;
    font-family: system-ui;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    text-align: center;
    transition: background-color 0.15s ease-in-out;
}

.logout-button:hover {
    background-color: #f9fafb;
}

.logout-button:active {
    background-color: #f3f4f6;
}

.google-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    margin-top: 1.25rem;
    background-color: #ffffff;
    color: #4a5568;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: system-ui;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.15s ease-in-out; 
}

.google-link:hover {
    background-color: #f9fafb;
}

.google-link:active {
    background-color: #f3f4f6;
}

.google-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.access-message {
    font-family: system-ui;
}