﻿@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Raleway, sans-serif;
}

html{
    overflow:hidden
}

body {
    background: linear-gradient(to right top, #362abe, #214bd3, #0267e5, #0382f3, #299bff);
    overflow: hidden;
}

.login-title {
    color: #3498db;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    z-index: 100;
}

.screen {
    background: #299bff;
    position: relative;
    height: 600px;
    width: 380px;
    box-shadow: 0px 0px 10px;
    box-shadow: 2px 2px 18px -4px #333;
    -webkit-box-shadow: 2px 2px 18px -4px #333;
    -moz-box-shadow: 2px 2px 18px -4px #333;
}
.remember-me{
    display: flex;
    align-content: center;
    gap: 8px;
}
.checkbox, input[type=checkbox] {
    font-size: 13px;
    /*accent-color: #299bff !important;*/
    
  
}
/*.checkbox {
    font-family: Font Awesome 6 Free;
    color: #333;
}*/

 

.screen__content {
    z-index: 1;
    position: relative;
    height: 100%;
}

.screen__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

.screen__background__shape {
    transform: rotate(45deg);
    position: absolute;
}

.screen__background__shape1 {
    height: 520px;
    width: 520px;
    background: #FFF;
    top: -50px;
    right: 120px;
    border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
    height: 220px;
    width: 220px;
    background: linear-gradient(to right top, #362abe, #2644ce, #125adc, #006ee9, #0382f3, #0382f3, #0382f3, #0382f3, #006ee9, #125adc, #2644ce, #362abe);
    top: -172px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape3 {
    height: 540px;
    width: 190px;
    background: linear-gradient(to right top, #362abe, #2644ce, #125adc, #006ee9, #0382f3, #0382f3, #0382f3, #0382f3, #006ee9, #125adc, #2644ce, #362abe);
    top: -24px;
    right: 0;
    border-radius: 32px;
}

.screen__background__shape4 {
    height: 400px;
    width: 200px;
    background: linear-gradient(to right top, #362abe, #2644ce, #125adc, #006ee9, #0382f3, #0382f3, #0382f3, #0382f3, #006ee9, #125adc, #2644ce, #362abe);
    top: 420px;
    right: 50px;
    border-radius: 60px;
}

.login {
    width: 320px;
    padding: 30px;
    padding-top: 120px;
}

.login__field {
    padding: 20px 0px;
    position: relative;
}

.login__icon {
    position: absolute;
    top: 30px;
    color: #3498db;
}

.login__input {
    border: none;
    border-bottom: 2px solid #D1D1D4;
    background: none;
    padding: 10px;
    padding-left: 24px;
    font-weight: 700;
    width: 75%;
    transition: .2s;
    display: block;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

    .login__input:active,
    .login__input:focus,
    .login__input:hover {
        outline: none;
        border-bottom-color: #6A679E;
    }

.login__submit {
    background: #fff;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 20px;
    border-radius: 26px;
    border: 1px solid #eee;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    width: 100%;
    color: #3498db;
    box-shadow: 0px 5px 3px rgb(51 51 51 / 20%);
    cursor: pointer;
    transition: .2s;
    position:relative;
}

    .login__submit:active,
    .login__submit:focus,
    .login__submit:hover {
        border: 2px solid #3498db;
        outline: none;
    }

.button__icon {
    font-size: 24px;
    margin-left: auto;
    color: #3498db;
}

.logo {
    position: absolute;
    height: 90px;
    width: 120px;
    text-align: center;
    bottom: 0px;
    right: 0px;
    color: #fff;
}

.forgot-password{
    margin-top: 10px;
    
}

    .forgot-password a {
        text-decoration: none;
        font-size: 14px;
        color: #50555a;
        
    }

      /*  .forgot-password a:hover {
            color: #54527f;
            border-bottom: 2px solid #299bff;
        }*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-transition-delay: 99999s;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #0087ca;
}

    .hover-underline-animation:after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #0087ca;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    .hover-underline-animation:hover:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }


    .text-danger{
        color:red;
        font-size: 12px;
    }


