@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

.btn-purple {
    color: #fff;
    background-color: var(--torch-primary, #3300FF);
    /* border-color: #6a3ce9; */
}

.btn-purple:hover {
    color: #fff;
    background-color: var(--torch-primary, #3300FF);
    border-color: var(--torch-primary, #3300FF);
}

.btn-purple:focus,
.btn-purple.focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 184, 184, 0.5);
}

.btn-purple.disabled,
.btn-purple:disabled {
    color: #fff;
    background-color: var(--torch-primary, #3300FF);
    border-color: var(--torch-primary, #3300FF);
}

.btn-purple:not(:disabled):not(.disabled):active,
.btn-purple:not(:disabled):not(.disabled).active,
.show>.btn-purple.dropdown-toggle {
    color: #fff;
    background-color: var(--torch-primary, #3300FF);
    border-color: var(--torch-primary, #3300FF);
}

.btn-purple:not(:disabled):not(.disabled):active:focus,
.btn-purple:not(:disabled):not(.disabled).active:focus,
.show>.btn-purple.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(184, 184, 184, 0.5);
}

.form-control {
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0px 3px 7px rgba(60, 60, 60, 0.05);
}

.form-control:focus,
.form-control.focus {
    box-shadow: 0px 3px 6px rgba(0, 123, 255, .1);
    border-color: rgba(0, 123, 255, .3);
}

.asteriskField {
    padding-left: 4px;
    color: rgb(130, 11, 11);
}


body.login2 {
    background-color: #4A00FF;
    /* background-color: #e6e6e6; */
    /* background-color: var(--torch-primary, #5A33FF); */
    /* background-color: var(--torch-primary, #5A44FF); */
    /* background-color: var(--torch-primary, #5A00FF); */
    /* background: linear-gradient(335.89deg, var(--torch-primary-light, #A44DF4) 0%, var(--torch-primary, #3300FF) 100%); */
    height: 100%;
    background-size: 400% 400%;
    -webkit-animation: AnimationName 25s ease infinite;
    -moz-animation: AnimationName 25s ease infinite;
    animation: AnimationName 25s ease infinite;
}

body.login {
    /* background-color: #4A00FF; */
    background-color: #f8f9fa;
    height: 100vh; /* Set the height of the body to 100% of the viewport height */
    margin: 0; /* Remove default margin */
    display: flex; /* Enable flexbox */
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    background-size: 400% 400%;
    -webkit-animation: AnimationName 25s ease infinite;
    -moz-animation: AnimationName 25s ease infinite;
    animation: AnimationName 25s ease infinite;
}


@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 60%
    }

    50% {
        background-position: 100% 41%
    }

    100% {
        background-position: 0% 60%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 60%
    }

    50% {
        background-position: 100% 41%
    }

    100% {
        background-position: 0% 60%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 60%
    }

    50% {
        background-position: 100% 41%
    }

    100% {
        background-position: 0% 60%
    }
}


.login-container {
    margin: 0px;
    height: 100vh;

}

.login-card {
    position: relative;
    font-family: 'Source Sans Pro', sans-serif;
    width: 100%;
    max-width: 420px;
    background: rgb(255, 255, 255);
    margin: 2rem auto;
    border: 0;
    border-radius: 6px;
    box-shadow: 0px 8px 16px 10px rgba(8, 35, 48, 0.15);
}

.login-card input:-webkit-autofill,
.login-card input:-webkit-autofill:hover,
.login-card input:-webkit-autofill:focus {
    -webkit-text-fill-color: #211C57;
    -webkit-box-shadow: 0 0 0px 1000px rgba(0, 0, 0, 0) inset;
    transition: background-color 5000s ease-in-out 0s;
}

.login-card .btn-purple:hover,
.login-card .btn-purple:focus,
.login-card .btn-purple:disabled,
.login-card .btn-purple {
    border: none;
}

.login-card .btn-purple {
    background: linear-gradient(270deg, var(--torch-primary-light, #4A00FF) 0%, var(--torch-primary, #6a3ce9) 100%);
    border-radius: 10px;
    height: 50px;
    color: #fff;
    font-size: 15px;
}

.login-card a {
    color: var(--torch-primary, #6a3ce9);
    font-weight: 400;
}

.login-card .form-group {
    position: relative;
    display: flex;
}

.login-card input {
    font-family: 'Open Sans', sans-serif;
    border: none;
    border-bottom: 2px #dedede solid;
    background: transparent;
    background-color: transparent;
    border-radius: 0;
    padding-left: 0;
    box-shadow: none;
    margin-bottom: 2.5em;
    transition: all .25s;
    z-index: 3;
}

.login-card input:focus {
    border-bottom: 2px var(--torch-primary, #6a3ce9) solid;
    box-shadow: none;
}

.login-card .floating-label {
    position: absolute;
    top: 5px;
    left: 0;
    transition: all .15s ease-in-out;
    z-index: 1;
}

.login-card input:focus+label,
.login-card input:valid+label,
.login-card input:-webkit-autofill+label {
    margin-top: -20px;
    font-size: 12px;
    text-align: left;
    display: block;
    color: #447;
    font-weight: bold;
}

.spinning {
    -webkit-animation: rotation 2s infinite linear;
}
