/* Full-screen layout */
.pre-login {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: var(--color-blue-10);
    min-height: 100vh;
}

.pre-login__container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-blue-50-dark-1);
}

.pre-login__container h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: var(--color-blue-50);
    margin-bottom: 10px;
    text-align: center;
}

.logo__image {
    height: 36px;
    width: auto;
    display: block;
}

.pre-login__subtitle {
    font-size: 16px;
    color: var(--color-white-100);
    margin-bottom: 30px;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.login-label {
    font-weight: 600;
    color: #333333;
}

.login-input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.login-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-blue-50);
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.login-submit i {
    font-size: 2rem;
}

.login-submit:hover {
    background-color: var(--color-accent-50);
}

/* Sign-in options */
.login-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 9999px;
    color: white;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.login-button.google,
.login-button.apple {
    background-color: var(--color-grey-100);
    color: white;
}

.login-button i {
    font-size: 2rem;
}

.login-button.google:hover,
.login-button.apple:hover {
    background-color: var(--color-grey-40);
    color: black;
}
