﻿/*==========================
 LOGIN CARD
===========================*/

.login-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-card {
    width: 100%;
    max-width: 480px;
    background: #04a1b2;
    border-radius: 24px;
    padding: 75px 35px 35px;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 15px 40px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.18);
    box-shadow: 0 15px 45px rgba(0,0,0,.12);
    transition: .35s;
}
 
    .login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 60px rgba(0,0,0,.18);
    }

/*==========================
 LOCK
===========================*/

.lock-circle {
    width: 95px;
    height: 95px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -45px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

    .lock-circle i {
        font-size: 42px;
        color: #ffb400;
    }

/*==========================
 TITLE
===========================*/

.login-card h1 {
    text-align: center;
    font-size: 24px;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-card p {
    text-align: center;
    color: #fff;
    font-size: 15px;
    margin-bottom: 25px;
}

/*==========================
 INPUT
===========================*/

.input-box {
    position: relative;
    margin-bottom: 18px;
}

    .input-box i {
        position: absolute;
        left: 18px;
        top: 17px;
        color: #1697a6;
        font-size: 18px;
    }

    .input-box input {
        width: 100%;
        height: 55px;
        border: 1px solid #d9e3e8;
        border-radius: 12px;
        padding: 0 50px;
        font-size: 16px;
        transition: .3s;
    }

        .input-box input:focus {
            border-color: #1697a6;
            box-shadow: 0 0 0 3px rgba(22,151,166,.15);
        }

.eye {
    position: absolute;
    right: 18px !important;
    top: 18px !important;
    color: #777;
    cursor: pointer;
}

/*==========================
 BUTTON
===========================*/

.login-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg,#12b8c9,#0b9ca5);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

    .login-btn:hover {
        background: linear-gradient(90deg,#02c2d1,02a4b3);
    }

/*==========================
 MOBILE
===========================*/

@media(max-width:576px) {

    .login-wrapper {
        padding: 15px;
    }

    .login-card {
        padding: 65px 20px 25px;
        border-radius: 18px;
    }

    .lock-circle {
        width: 80px;
        height: 80px;
        top: -40px;
    }

        .lock-circle i {
            font-size: 35px;
        }

    .login-card h1 {
        font-size: 26px;
    }

    .input-box input {
        height: 48px;
        font-size: 15px;
    }

    .login-btn {
        height: 48px;
        font-size: 16px;
    }
}
/*====================================
 REMEMBER & FORGOT
====================================*/

.remember {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0 25px;
    font-size: 14px;
}

    .remember label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        cursor: pointer;
    }

    .remember input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #0aa5a5;
    }

    .remember a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
    }

        .remember a:hover {
            text-decoration: underline;
        }


/*====================================
 MESSAGE BOX
====================================*/

.msg-box {
    background: #eef9fb;
    border: 1px solid #d7eef2;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 14px;
}

    .msg-box i {
        color: #0aa5a5;
        font-size: 18px;
    }


/*====================================
 HOME BUTTON
====================================*/

.home-btn {
    display: block;
    margin-top: 15px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 12px;
    border: 2px solid #75dbdf;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: .3s;
}

    .home-btn:hover {
        background: #f0fffe;
        color: #fff;
    }


/*====================================
 BOTTOM LINKS
====================================*/

.bottom-link {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

    .bottom-link a {
        color: #f0fffe;
        text-decoration: none;
        font-weight: 600;
        margin: 0 8px;
    }

        .bottom-link a:hover {
            text-decoration: underline;
        }


/*====================================
 BACKGROUND
====================================*/

body {
    /*background: linear-gradient(135deg,#11c5cf,#009999);*/
    background: linear-gradient(135deg,#059cad,#28a6b5);
    position: relative;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        left: -120px;
        top: -120px;
    }

    body::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        right: -100px;
        bottom: -100px;
    }

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

form {
    width: 100%;
    min-height: 100vh;
}

.login-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 480px;
}
/*====================================
 ANIMATION
====================================*/

.login-card {
    animation: fadeUp .6s ease;
}

@keyframes fadeUp {

    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.lock-circle {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}


/*====================================
 TABLET
====================================*/

@media(max-width:768px) {

    .remember {
        display: block;
        text-align: center;
    }

        .remember label {
            justify-content: center;
            margin-bottom: 10px;
        }

    .home-btn {
        height: 48px;
        line-height: 48px;
    }
}
.input-box {
    position: relative;
}

.eye {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    z-index: 100;
}

    .eye:hover {
        color: #009999;
    }

.input-box input {
    padding-right: 55px;
}