@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    height: 100vh;
    /* background: linear-gradient(180deg, #b3199f, #2de3c6); */
    /* background: linear-gradient(to left, #f35a5d, #b3199f, #2de3c6); */
    background: linear-gradient(to bottom, #f35a5d, #b3199f, #2de3c6);
    /* background: linear-gradient(#f35a5d, #ed517e); */
    /* background-image: url('../images/bg/mountain-minimal.jpg'); */
    background-size: cover;
    background-position: center;
}

.nav-bar {
    z-index: 200;
    height: 60px;
    position: relative;
    background-color: #000000;
}

.nav-bar img {
    transform: translateY(-10px);
    margin-right: 8px;
    border-radius: 50%;
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
}

.login-container {
    max-width: 460px;
    background: #F8F9FD;
    backdrop-filter: blur(20px);
    border: 2px solid #ffffff;
    border-radius: 10px;
    padding: 0.5rem 2rem;
    z-index: 100;
}

.heading {
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 0.75rem;
    background: linear-gradient(132deg, #ee2c3c 14.58%, #c5135d 65.1%, #6a11b0);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.login-forms {
    display: grid;
    gap: 1.25rem;
    place-items: center;
    width: 100%;
    margin: 0;
}

.textbox {
    display: flex;
    position: relative;
    width: 100%;
}

.textbox>i {
    right: 15px;
    cursor: pointer;
    color: #a6a6a6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.textbox label {
    position: absolute;
    top: 50%;
    left: 50px;
    translate: 0 -50%;
    color: rgba(0, 0, 0);
    transition: 0.3s;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

.textbox :is(input:focus, input:valid)~label {
    scale: 0.8;
    translate: -42px -42px;
    padding: 0 5px;
    /* background: #ffffff; */
    pointer-events: none;
    background: #f8f9fd;
    z-index: 2;
}

.textbox span {
    position: absolute;
    top: 50%;
    left: 16px;
    translate: 0 -50%;
    color: rgba(0, 0, 0, 0.38);
}

.login-forms input {
    width: 100%;
    height: 60px;
    outline: none;
    padding: 0;
    font-family: inherit;
    font-size: 16px;
    border-radius: 8px;
}

.login-forms input {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 18px;
    padding: 0 40px 0 43px;
    color: inherit;
}

.login-forms input:focus {
    border-color: #8f44fd;
}

.login-forms :is(input:focus, input:valid)~span {
    color: #1a1a1a;
}

.login-button {
    display: block;
    position: relative;
    width: 100%;
    color: #11b753;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    border: 1.5px solid #11b753;
    margin-bottom: 0.75rem;
}

.login-button:hover {
    color: white;
}


.login-button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: #11b753;
    transform: translateX(-100%);
    transition: all 1s;
    z-index: -1;
}

.login-button:hover::before {
    transform: translateX(0);
}

.login-button i {
    margin-left: 0.75rem;
}

.social-account-container {
    display: grid;
}

.social-account-container .title {
    display: block;
    text-align: center;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}

.social-account-container .social-accounts .social-button {
    background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(112, 112, 112) 100%);
    border: 5px solid white;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 12px 10px -8px;
    transition: all 0.2s ease-in-out;
}

.social-account-container .social-accounts .social-button .svg {
    fill: white;
    margin: auto;
}

.social-account-container .social-accounts .social-button:hover {
    transform: scale(1.2);
}

.social-account-container .social-accounts .social-button:active {
    transform: scale(0.9);
}

.agreement {
    display: block;
    text-align: center;
    margin-top: 15px;
}

.agreement a {
    text-decoration: none;
    color: #0099ff;
    font-size: 9px;
}

.wrapper {
    padding-left: 0 !important;
    display: inline-flex;
    list-style: none;
    width: 100%;
    font-family: "Poppins", sans-serif;
    justify-content: center;
    margin: 0rem;
}

.wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 18px 18px 11px 18px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -32px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #334c8c;
    color: #fff;
}

.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #000000;
    color: #fff;
}

.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: linear-gradient(0deg, rgb(251, 36, 215), rgb(232, 106, 84));
    color: #fff;
}

.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
    background: #0a64bf;
    color: #fff;
}

.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #ff0000;
    color: #fff;
}

a {
    text-decoration: none;
    color: white;
}

.failedErrorMessage {
    text-align: center;
    color: red;
    font-weight: bold;
    font-size: large;
}

.showLeft {
    text-shadow: none !important;
    color: #fff !important;
}

li span a img {
    max-width: 64px;
}

.icons li {
    background: none repeat scroll 0 0 #fff;
    height: 5px;
    width: 5px;
    line-height: 0;
    list-style: none outside none;
    margin-right: 15px;
    margin-top: 3px;
    vertical-align: top;
    border-radius: 50%;
    pointer-events: none;
}

.dropbtn {
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    display: block;
    margin-top: -20px;
}

.dropdown-content {
    border-radius: 5px;
    top: 40px;
    right: 0;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 150;
}

.dropdown-content a {
    text-align: center;
    color: black;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:last-child {
    border-top: 1px solid black;
}

.dropdown-content a:hover {
    border-top: none;
}


.dropdown a:hover {
    color: white;
    background-color: #11a6d1;
    ;
}

.show {
    display: block;
}

@media (min-width:576px) {
    .dropdown {
        display: none;
    }
}

@media (max-width:768px)and (min-width:401px) {
    .login-container {
        width: 400px;
        padding: 20px 20px;
        margin-left: 2%;
        margin-right: 2%;
    }
}

@media (max-width:400px) {
    .login-container {
        padding: 0.6rem 1.2rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .wrapper .icon {
        margin: 5px;
        width: 40px;
        height: 40px;
    }

    .form {
        margin-top: 0px;
    }
}

@media (max-width: 768px) {
    .social-account-container .social-accounts .tooltip {
        display: none;
    }
}

@media (max-width:576px) {
    .links {
        display: none !important;
    }
}