* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-white); /* Updated to neutral white */
    padding-top: 56px;
}

h2 {
    color: var(--darker-blue); /* Use darker blue for headings */
}

.background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--neutral-white); /* Updated to neutral white */
}

.central-box {
    width: 40%;
    min-width: 300px;
    padding: 30px;
    background-color: var(--neutral-white); /* Matches body background */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
}

.logo {
    width: 150px;
    height: auto;
}

.toggle button {
    margin: 5px;
    padding: 10px 20px;
    background-color: var(--lighter-blue); /* Updated for lighter blue */
    color: var(--neutral-white); /* White text for contrast */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 7px 0;
    border: 1px solid var(--light-steel-blue); /* Subtle blue for input borders */
    border-radius: 5px;
}


.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--mid-blue); /* Subtle blue for button borders */
    border-radius: 5px;
    background-color: var(--neutral-white);
    color: var(--darker-blue); /* Strong blue for text */
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.social-btn:hover {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.google-btn .logo, .microsoft-btn .logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Specific styling for each button */
.google-btn {
    color: var(--mid-blue);
    border-color: var(--mid-blue);
}

.microsoft-btn {
    color: var(--darker-blue);
    border-color: var(--darker-blue);
}


@media (max-width: 768px) {
    .central-box {
        width: 100%;
        height: 100vh; /* Take full viewport height */
        padding: 20px;
        border-radius: 0; /* Remove rounded corners */
        box-shadow: none; /* Remove box shadow for a cleaner mobile look */
    }
}
