@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

html {
    overflow: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/**login page**/
.loginPage {
    background: rgb(90,141,226);
    height: 100%;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loginLogo {
    margin: auto;
    width: 404px;
    margin-top: 80px;
    margin-bottom: 35px;
    display: flex;
}

.loginForm {
    display: flex;
    flex-direction: column;
    width: 386px;
    margin: auto;
    position: relative;
}

.loginFormTitle {
    font-family: Montserrat;
    color: #c0027c;
    font-size: 1.4rem;
    text-align: left;
}

.loginFormSubTitle {
    font-family: Montserrat;
    color: #c0027c;
    font-size: 1.4rem;
    text-align: left;
    font-weight: bold;
    margin-bottom: 20px;
}

.loginContainer {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1111111;
    position: absolute;
    border-radius: 20px;
    box-shadow: 14px 20px 20px 3px #32323247;
    padding: 60px;
}

.loginFormInputs {
    display: flex;
    flex-direction: column;
}

.loginFormRecoveryLink {
    margin-top: 10px;
    text-align: right;
    font-family: Montserrat;
    font-size: 1.1rem;
    color: #979797;
}

.loginFormRecoveryLink a {
    color: #979797;
    text-decoration: none;
}

.loginFormRecoveryLink a:hover {
    text-decoration: underline;
}

.footer {
    margin-top: 20px;
    text-align: center;
    font-family: Montserrat;
    font-size: 0.8rem;
    color: #979797;
}

.footer a {
    color: #979797;
}

/**animations**/
@keyframes gradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.area {
    background: #4e54c8;
    background: linear-gradient(334deg, #9C27B0, rgba(194, 1, 124, 1), #7b156b, rgb(183 21 163));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite both;
    width: 100%;
    height: 100vh;
    position: absolute;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
}

.circles li:nth-child(1)  { left: 25%;   width: 80px;  height: 80px;  animation-delay: 0s; }
.circles li:nth-child(2)  { left: 10%;   width: 20px;  height: 20px;  animation-delay: 2s;  animation-duration: 12s; }
.circles li:nth-child(3)  { left: 70%;   width: 20px;  height: 20px;  animation-delay: 4s; }
.circles li:nth-child(4)  { left: 40%;   width: 60px;  height: 60px;  animation-delay: 0s;  animation-duration: 18s; }
.circles li:nth-child(5)  { left: 65%;   width: 20px;  height: 20px;  animation-delay: 0s; }
.circles li:nth-child(6)  { left: 75%;   width: 110px; height: 110px; animation-delay: 3s; }
.circles li:nth-child(7)  { left: 35%;   width: 150px; height: 150px; animation-delay: 7s; }
.circles li:nth-child(8)  { left: 50%;   width: 25px;  height: 25px;  animation-delay: 15s; animation-duration: 45s; }
.circles li:nth-child(9)  { left: 20%;   width: 15px;  height: 15px;  animation-delay: 2s;  animation-duration: 35s; }
.circles li:nth-child(10) { left: 85%;   width: 550px; height: 650px; animation-delay: 0s;  animation-duration: 51s; }
.circles li:nth-child(11) { left: -25%;  bottom: -50%; width: 550px;  height: 650px; animation-delay: 0s; animation-duration: 31s; }

@keyframes animate {
    0%   { transform: translateY(0) rotate(0deg);        opacity: 1; border-radius: 0; }
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

/* Button */
button {
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
    background: linear-gradient(-45deg, #c7007e, #bd0078);
    box-shadow: 0 0 2px #9990;
    outline: none;
    font-family: Montserrat;
    width: 100%;
}

.ripple {
    background-position: center;
    transition: background 0.8s;
}

.ripple:hover {
    background: #47a7f5 radial-gradient(circle, #bd0078 1%, #df32a0 1%) center/15000%;
}

.ripple:active {
    background-color: #bb1d81;
    background-size: 100%;
    transition: background 0s;
}

.passwordField {
    margin-top: 20px;
}

/* Pure material outlined text fields */
.pure-material-textfield-outlined {
    --pure-material-safari-helper1: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    position: relative;
    display: inline-block;
    padding-top: 6px;
    font-family: var(--pure-material-font, "Montserrat", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
    font-size: 16px;
    line-height: 1.5;
    overflow: hidden;
}

.pure-material-textfield-outlined > input,
.pure-material-textfield-outlined > textarea {
    box-sizing: border-box;
    margin: 0;
    border: solid 1px rgba(0, 0, 0, 0.6);
    border-top-color: transparent;
    border-radius: 4px;
    padding: 15px 13px 15px;
    width: 100%;
    height: inherit;
    color: rgba(0, 0, 0, 0.87);
    background-color: transparent;
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    caret-color: rgb(0, 0, 0);
    transition: border 0.2s, box-shadow 0.2s;
}

.pure-material-textfield-outlined > input + span,
.pure-material-textfield-outlined > textarea + span {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    max-height: 100%;
    color: rgba(0, 0, 0, 0.6);
    font-size: 75%;
    line-height: 15px;
    cursor: text;
    transition: color 0.2s, font-size 0.2s, line-height 0.2s;
}

.pure-material-textfield-outlined > input + span::before,
.pure-material-textfield-outlined > input + span::after,
.pure-material-textfield-outlined > textarea + span::before,
.pure-material-textfield-outlined > textarea + span::after {
    content: "";
    display: block;
    box-sizing: border-box;
    margin-top: 6px;
    border-top: solid 1px rgba(0, 0, 0, 0.6);
    min-width: 10px;
    height: 8px;
    pointer-events: none;
    box-shadow: inset 0 1px transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pure-material-textfield-outlined > input + span::before,
.pure-material-textfield-outlined > textarea + span::before {
    margin-right: 4px;
    border-left: solid 1px transparent;
    border-radius: 4px 0;
}

.pure-material-textfield-outlined > input + span::after,
.pure-material-textfield-outlined > textarea + span::after {
    flex-grow: 1;
    margin-left: 4px;
    border-right: solid 1px transparent;
    border-radius: 0 4px;
}

.pure-material-textfield-outlined:hover > input,
.pure-material-textfield-outlined:hover > textarea {
    border-color: rgba(0, 0, 0, 0.87);
    border-top-color: transparent;
}

.pure-material-textfield-outlined:hover > input + span::before,
.pure-material-textfield-outlined:hover > textarea + span::before,
.pure-material-textfield-outlined:hover > input + span::after,
.pure-material-textfield-outlined:hover > textarea + span::after {
    border-top-color: rgba(0, 0, 0, 0.87);
}

.pure-material-textfield-outlined:hover > input:not(:focus):placeholder-shown,
.pure-material-textfield-outlined:hover > textarea:not(:focus):placeholder-shown {
    border-color: rgba(0, 0, 0, 0.87);
}

.pure-material-textfield-outlined > input:not(:focus):placeholder-shown,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown {
    border-top-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}

.pure-material-textfield-outlined > input:not(:focus):placeholder-shown + span,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown + span {
    font-size: inherit;
    line-height: 68px;
}

.pure-material-textfield-outlined > input:not(:focus):placeholder-shown + span::before,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown + span::before,
.pure-material-textfield-outlined > input:not(:focus):placeholder-shown + span::after,
.pure-material-textfield-outlined > textarea:not(:focus):placeholder-shown + span::after {
    border-top-color: transparent;
}

.pure-material-textfield-outlined > input:focus,
.pure-material-textfield-outlined > textarea:focus {
    border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    border-top-color: transparent;
    box-shadow: inset 1px 0 var(--pure-material-safari-helper1), inset -1px 0 var(--pure-material-safari-helper1), inset 0 -1px var(--pure-material-safari-helper1);
    outline: none;
}

.pure-material-textfield-outlined > input:focus + span,
.pure-material-textfield-outlined > textarea:focus + span {
    color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-textfield-outlined > input:focus + span::before,
.pure-material-textfield-outlined > input:focus + span::after,
.pure-material-textfield-outlined > textarea:focus + span::before,
.pure-material-textfield-outlined > textarea:focus + span::after {
    border-top-color: var(--pure-material-safari-helper1) !important;
    box-shadow: inset 0 1px var(--pure-material-safari-helper1);
}

.pure-material-textfield-outlined > input:disabled,
.pure-material-textfield-outlined > input:disabled + span,
.pure-material-textfield-outlined > textarea:disabled,
.pure-material-textfield-outlined > textarea:disabled + span {
    border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38) !important;
    border-top-color: transparent !important;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    pointer-events: none;
}

.pure-material-textfield-outlined > input:disabled + span::before,
.pure-material-textfield-outlined > input:disabled + span::after,
.pure-material-textfield-outlined > textarea:disabled + span::before,
.pure-material-textfield-outlined > textarea:disabled + span::after {
    border-top-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38) !important;
}

.pure-material-textfield-outlined > input:disabled:placeholder-shown,
.pure-material-textfield-outlined > input:disabled:placeholder-shown + span,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown + span {
    border-top-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38) !important;
}

.pure-material-textfield-outlined > input:disabled:placeholder-shown + span::before,
.pure-material-textfield-outlined > input:disabled:placeholder-shown + span::after,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown + span::before,
.pure-material-textfield-outlined > textarea:disabled:placeholder-shown + span::after {
    border-top-color: transparent !important;
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .pure-material-textfield-outlined > input,
        .pure-material-textfield-outlined > input + span,
        .pure-material-textfield-outlined > textarea,
        .pure-material-textfield-outlined > textarea + span,
        .pure-material-textfield-outlined > input + span::before,
        .pure-material-textfield-outlined > input + span::after,
        .pure-material-textfield-outlined > textarea + span::before,
        .pure-material-textfield-outlined > textarea + span::after {
            transition-duration: 0.1s;
        }
    }
}
