* {
    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: #f8f9fa;
}

h2 {
    color: #137484;
}

.background {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.logo {
    width: 80px;
    height: auto;
    /* margin-bottom: 20px; */
}

.toggle button {
    margin: 5px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input {
    width: 100%;
    padding: 10px;
    margin: 7px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.primary-btn {
    width: 100%;
    padding: 10px;
    margin-top: 5%;
    background-color: #137484;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.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 #ddd;
    border-radius: 5px;
    background-color: white;
    color: #555;
    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: #137484; /* Google blue color */
    border-color: #137484;
}

.microsoft-btn {
    color: #137484; /* Microsoft blue color */
    border-color: #137484;
}


.link-highlight {
    color: #137484; /* Choose a color that matches your theme */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-highlight:hover {
    color: #137484; /* Darker shade for hover effect */
    text-decoration: underline;
}


@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 */
    }
}