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

.login-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.login-login-container {
    display: flex;
    height: 100vh;
    padding: 23px 115px;
    flex-direction: column;
    align-items: center;
    background: #F6F6F6;
    justify-content: center;
}

.login-login-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    border-radius: 35px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.login-login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 40px;
    gap: 20px;
}

.login-login-image {
    width: 50%;
    overflow: hidden;
}

    .login-login-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 35px 35px 0;
    }

.login-logo-login img {
    max-width: 100px;
    height: auto;
}

.login-heading-login {
    color: #434343;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
}

.login-input-label {
    align-self: flex-start;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 6px;
    margin-left: 4px;
}

.login-form-input {
    border-radius: 9px;
    border: 1px solid #0095DA;
    background: rgba(247, 247, 247, 0.42);
    height: 34px;
    padding: 10px;
    align-items: center;
    gap: 6px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.login-password-input {
    position: relative;
    width: 100%;
}

.login-toggle-password {
    position: absolute;
    right: 12px;
    top: 75%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0095DA;
}

.login-submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100%;
    padding: 0 20px;
    border-radius: 9px;
    background: #0095DA;
    color: white;
    box-shadow: 2px 0px 30px 0px rgba(0, 0, 0, 0.10);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

.login-forgot-password {
    color: #0095DA;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.login-already {
    color: #37393C;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.48px;
}

.login-register-link {
    color: #0095DA;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.login-azure-login-button {
    border-color: #0095DA !important;
    color: #0095DA !important;
}

.login-mt-2 {
    margin-top: 12px;
}

.login-mb-2 {
    margin-bottom: 12px;
}

.login-text-right {
    text-align: center;
}

.login-d-flex {
    display: flex;
}

.login-align-center {
    align-items: center;
}

.login-justify-center {
    justify-content: center;
}

.login-mr-2 {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .login-login-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .login-login-content, .login-login-image {
        width: 100%;
    }

        .login-login-image img {
            border-radius: 0;
            height: 200px;
        }

    .login-login-content {
        padding: 20px;
    }
}
