:root {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #E3E4E6;
    --logo-orange: #f99d1c;
    --logo-green: #76c044;
    --logo-purple: #6750a1;
    --primary: #4f93c7;
    --secondary: #0D1022;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.user-form-container {
    width: 30%;
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px rgba(0, 0, 0, .25);
    padding: 16px;
}

.form-title-container {
    display: flex;
    justify-content: center;
}

.user-input-container {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.user-input-container > input {
    height: 40px;
    border-radius: 5px;
    border: solid lightgrey;
    width: 100%;
    padding-left: 8px;
}

.user-form-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    margin-top: 16px;
}

.user-form-button-container > button {
    height: 40px;
    border-radius: 20px;
    width: 75%;
    border: none;
    background-color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5), 0 2px 4px rgba(0, 0, 0, .75);


    cursor: pointer;
    font-size: 1.1rem;
    transition: all .3s ease;
}

.user-form-button-container > button:hover {
    background-color: var(--secondary);
    color: white;
}

.user-other-container {
    display: flex;
    justify-content: center;
}

.google-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 260px;
    padding: 12px 20px;

    background-color: #ffffff;
    color: #202124;

    border: 1px solid #dadce0;
    border-radius: 6px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;

    text-decoration: none;

    box-sizing: border-box;
    transition:
        background-color 0.15s ease,
        box-shadow 0.15s ease;
}

.google-login-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
}

.google-login-btn:visited {
    color: #202124;
}

.google-login-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
