@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;600&display=swap');

body {
    background: linear-gradient(to bottom, #336B87, #4FB6B6);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 15px;
    font-family: "Lato", sans-serif;
    font-weight: 300;
}

.login-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-title {
    color: #336B87;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space between logo and login box */
}

.login-logo {
    max-width: 180px; /* Adjust size as needed */
    height: auto;
    display: block;
}

.google-sign-in-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #F0FBFB;
    color: #336B87;
    border: 1px solid #D6ECEC;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(51, 107, 135, 0.1);
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
    font-family: "Lato", sans-serif;
}

.google-sign-in-btn:hover {
    background-color: #D6ECEC;
    box-shadow: 0 4px 6px rgba(51, 107, 135, 0.15);
}

.google-sign-in-btn:active {
    background-color: #4FB6B6;
    color: #F2F0EB;
    box-shadow: 0 2px 4px rgba(51, 107, 135, 0.1);
}

.google-sign-in-btn svg {
    height: 20px;
    width: 20px;
}

.welcome-text {
    color: #336B87;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Lato", sans-serif;
    font-weight: 300;
}
