﻿/* Base button styles */


.login-button {
    margin: 0.5em 0;
    padding: 0.8em;
    height: 50px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    display: flex;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
    /* ICON next to text */
    .login-button img, .login-button svg {
        margin-right: 0.5rem;
    }

.login-button-duo {
    background-color: #5db332;
}

    .login-button-duo:hover {
        background-color: #498b27;
    }

.login-button-adfs {
    background-color: #e88930;
    color: white;
}

    .login-button-adfs:hover {
        background-color: #cf7017;
        color: white;
    }

.login-button-google {
    background-color: #2980d6;
    color: white;
}

    .login-button-google:hover {
        background-color: #2166ab;
        color: white;
    }

.card-login {
    border-radius: 20px;
    background-color: var(--bs-tertiary-bg);
    box-shadow: 0 0 0px rgba(117, 183, 74, 0.5), 0 0 30px rgba(117, 183, 74, 0.4), 0 0 60px var(--nygc-green-dark);
}

.login-button-form {
    height: 50px;
    font-weight: 500;
}

.duo-login-image {
    height: 50px;
}

.opacity-50 {
    opacity: 0.5;
    pointer-events: none;
}
