﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    display: grid;
    height: 100%;
    width: 100%;
    place-items: center;
    background-image: linear-gradient(rgba(29, 55, 64, 0.65), rgba(14, 45, 61, 0.55)), url(../../asset/img/formbackground.png);
}



.alert {
    margin-top: 1rem;
    margin-bottom: 0;
}

.hidden {
    display: none;
}

.LoginSignup .wrapper {
    overflow: hidden;
    max-width: 390px;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
}

    .LoginSignup .wrapper .title-text {
        display: flex;
        width: 200%;
    }

    .LoginSignup .wrapper .title {
        color: #103449;
        width: 50%;
        font-size: 24px;
        font-weight: 600;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    }

    .LoginSignup .wrapper .slide-controls {
        position: relative;
        display: flex;
        height: 50px;
        width: 100%;
        overflow: hidden;
        margin: 30px 0 10px 0;
        justify-content: space-between;
        border: 1px solid lightgrey;
        border-radius: 5px;
    }

.LoginSignup .slide-controls .slide {
    height: 100%;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 48px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.6s ease;
}

.LoginSignup .slide-controls label.signup {
    color: #000;
}

.LoginSignup .slide-controls .slider-tab {
    position: absolute;
    height: 100%;
    width: 50%;
    left: 0;
    z-index: 0;
    border-radius: 5px;
    background: -webkit-linear-gradient(left, #2E5A71, #468AB1);
    transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.LoginSignup input[type="radio"] {
    display: none;
}

.LoginSignup #signup:checked ~ .slider-tab {
    left: 50%;
}

.LoginSignup #signup:checked ~ label.signup {
    color: #fff;
    cursor: default;
    user-select: none;
}

.LoginSignup #signup:checked ~ label.login {
    color: #000;
}

.LoginSignup #login:checked ~ label.signup {
    color: #000; 
}

.LoginSignup #login:checked ~ label.login {
    cursor: default;
    user-select: none;
}

.LoginSignup .wrapper .form-container {
    width: 100%;
    overflow: hidden;
}

.LoginSignup .form-container .form-inner {
    display: flex;
    width: 200%;
}

    .LoginSignup .form-container .form-inner form {
        width: 50%;
        transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    }

.LoginSignup .form-inner form .field {
    height: 50px;
    width: 100%;
    margin-top: 20px;
}

    .LoginSignup .form-inner form .field input,
    .LoginSignup .form-inner form .field textarea {
        height: 100%;
        width: 100%;
        outline: none;
        padding-left: 15px;
        border-radius: 5px;
        border: 1px solid #b3d4e8;
        border-bottom-width: 2px;
        font-size: 17px;
        /*transition: all 0.3s ease;*/

        padding: 12px;
        /* border: 1px solid #ccc;  
    box-sizing: border-box; */
        /*margin-top: 6px; 
  margin-bottom: 16px; */
        resize: vertical
    }

        .LoginSignup .form-inner form .field input:focus,
        .LoginSignup .form-inner form .field textarea:focus {
            border-color: /*#fc83bb;*/ #2B607E;
            /* box-shadow: inset 0 0 3px #fb6aae; */
        }

        .LoginSignup .form-inner form .field input::placeholder,
        .LoginSignup .form-inner form .field textarea::placeholder {
            color: /*#999; */ #60b2e0;
            transition: all 0.3s ease;
        }

.LoginSignup form .field input:focus::placeholder,
.LoginSignup form .field textarea:focus::placeholder {
    color: /*#b3b3b3;*/ #2B607E;
}

.LoginSignup .form-inner form .pass-link {
    margin-top: 5px;
}

.LoginSignup .form-inner form .signup-link {
    text-align: center;
    margin-top: 30px;
}
    /*.LoginSignup .form-inner form .pass-link a,
.LoginSignup .form-inner form .signup-link a{
  color: #fa4299;
  text-decoration: none;
}*/
    .LoginSignup .form-inner form .pass-link a:hover,
    .LoginSignup .form-inner form .signup-link a:hover {
        text-decoration: underline;
    }

.LoginSignup form .btn {
    height: 50px;
    width: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

    .LoginSignup form .btn .btn-layer {
        height: 100%;
        width: 300%;
        position: absolute;
        left: -100%;
        background: -webkit-linear-gradient(right, #2E5A71, #14415A, #2B607E, #468AB1);
        border-radius: 5px;
        transition: all 0.4s ease;
        ;
    }

    .LoginSignup form .btn:hover .btn-layer {
        left: 0;
    }

    .LoginSignup form .btn button[type="submit"] {
        height: 100%;
        width: 100%;
        z-index: 1;
        position: relative;
        background: none;
        border: none;
        color: #fff;
        padding-left: 0;
        border-radius: 5px;
        font-size: 20px;
        font-weight: 500;
        cursor: pointer;
        margin: -3px 0px;
        padding: 0px;
    }

/******************Login SignUp Ends Here*****************************/



/***********************************Reset Password Starts Here*************************************/

.ResetPassword .wrapper {
    overflow: hidden;
    max-width: 390px;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.1);
}

    .ResetPassword .wrapper .title-text {
        color: #103449;
        font-size: 35px;
        font-weight: 600;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
        display: flex;
        width: 200%;
    }

.ResetPassword #signup:checked ~ label.login {
    color: #000;
}

.ResetPassword #login:checked ~ label.signup {
    color: #000;
}

.ResetPassword #login:checked ~ label.login {
    cursor: default;
    user-select: none;
}

.ResetPassword .wrapper .form-container {
    width: 100%;
    overflow: hidden;
}

.ResetPassword .form-container .form-inner {
    display: flex;
    width: 200%;
}

    .ResetPassword .form-container .form-inner form {
        width: 50%;
        transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
    }

.ResetPassword .form-inner form .field {
    height: 50px;
    width: 100%;
    margin-top: 20px;
}

    .ResetPassword .form-inner form .field input {
        height: 100%;
        width: 100%;
        outline: none;
        padding-left: 15px;
        border-radius: 5px;
        border: 1px solid #b3d4e8;
        border-bottom-width: 2px;
        font-size: 17px;
        transition: all 0.3s ease;
    }

        .ResetPassword .form-inner form .field input:focus {
            border-color: #2B607E;
            /* box-shadow: inset 0 0 3px #fb6aae; */
        }

        .ResetPassword .form-inner form .field input::placeholder {
            color: #60b2e0;
            transition: all 0.3s ease;
        }

.ResetPassword form .field input:focus::placeholder {
    color: #2B607E;
}

.ResetPassword .form-inner form .pass-link {
    margin-top: 5px;
}

.ResetPassword .form-inner form .signup-link {
    text-align: center;
    margin-top: 30px;
}
    /*.ResetPassword .form-inner form .pass-link a,
.ResetPassword .form-inner form .signup-link a{
  color: #fa4299;
  text-decoration: none;
}*/
    .ResetPassword .form-inner form .pass-link a:hover,
    .ResetPassword .form-inner form .signup-link a:hover {
        text-decoration: underline;
    }

.ResetPassword form .btn {
    height: 50px;
    width: 100%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

    .ResetPassword form .btn .btn-layer {
        height: 100%;
        width: 300%;
        position: absolute;
        left: -100%;
        background: -webkit-linear-gradient(right, #2E5A71, #14415A, #2B607E, #468AB1);
        border-radius: 5px;
        transition: all 0.4s ease;
        ;
    }

    .ResetPassword form .btn:hover .btn-layer {
        left: 0;
    }

    .ResetPassword form .btn input[type="submit"] {
        height: 100%;
        width: 100%;
        z-index: 1;
        position: relative;
        background: none;
        border: none;
        color: #fff;
        padding-left: 0;
        border-radius: 5px;
        font-size: 20px;
        font-weight: 500;
        cursor: pointer;
    }
/**************************************Reset Password Ends Here************************************/
