﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00588E;
    --accent: #F19B14;
    --cyan: #00C2F3;
    --white: #FFF;
    --bg1: #071A2A;
    --bg2: #0E2D45;
    --glass: rgba(255,255,255,.05);
    --glass-border: rgba(255,255,255,.08);
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: radial-gradient(circle at top right,#00c2f322 0%,transparent 35%), radial-gradient(circle at bottom left,#f19b1418 0%,transparent 35%), linear-gradient(135deg,var(--bg1),var(--bg2));
    font-family: tahoma;
    overflow: hidden;
}

    body::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle,var(--cyan) 0%,transparent 70%);
        opacity: .08;
        top: -300px;
        right: -250px;
        filter: blur(30px);
    }

    body::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle,var(--accent) 0%,transparent 70%);
        opacity: .08;
        bottom: -200px;
        left: -200px;
        filter: blur(30px);
    }

.container {
    width: 100%;
    max-width: 1100px;
    height: 700px;
    display: flex;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

.left {
    flex: 1;
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.logo-icon > img{
   max-width:300px;
}

.logo-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: 800;
    color: white;
}

    .hero-title span {
        color: var(--cyan);
    }

.hero-text {
    color: #cfd8e3;
    line-height: 2;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: white;
}

    .feature i {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(0,194,243,.15);
        color: var(--cyan);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 12px;
    }

.right {
    width: 430px;
    background: rgba(255,255,255,.03);
    padding: 50px;
    display: flex;
    align-items: center;
}

.card {
    width: 100%;
}

    .card h2 {
        color: white;
        font-size: 1.9rem;
        margin-bottom: 10px;
        text-align:center;
    }

    .card p {
        color: #bfc9d6;
        margin-bottom: 35px;
        text-align: center;
    }

.group {
    margin-bottom: 18px;
}

    .group label {
        display: block;
        margin-bottom: 10px;
        color: white;
    }

.input {
    position: relative;
}

    .input i {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #8ca4bb;
    }

    .input input {
        width: 100%;
        height: 58px;
        padding-right: 52px;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 14px;
        color: white;
        font-size: 15px;
    }

        .input input:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 0 4px rgba(0,194,243,.15);
        }

.remember-me{
    color:#F19B14;
}
.forgot-password{
    display:inline-block;
    text-decoration:none;
    color:#00C2F3;
    margin-block:15px;
}
.login-btn {
    width: 100%;
    height: 58px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    background: linear-gradient( 135deg, var(--accent), #d98508 );
    transition: .3s;
    font-family:inherit;
}

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(241,155,20,.35);
    }

.footer {
    margin-top: 30px;
    text-align: center;
    color: #9db0c3;
    font-size: .9rem;
}

.social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

    .social a {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255,255,255,.06);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-decoration: none;
    }

        .social a:hover {
            background: rgba(0,194,243,.15);
            color: var(--cyan);
        }

@media(max-width:950px) {

    body{
        overflow:unset;
    }
        body::before{
            width:unset;
            height:unset;
        }
        body::after {
            width: unset;
            height: unset;
        }
        .container {
            flex-direction: column;
            height: auto;
        }

    .right {
        width: 100%;
    }

    .left {
        padding: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

}

@media(max-width:560px){

    body{
        min-height:unset;
        padding:0px;
    }
    .container{
        height:100vh;
    }
    .logo{
       display:block;
        margin-bottom:-2px;
        justify-items:center;
    }
        .logo img{
            display:block;
            margin:auto;
            max-width:200px;
        }
        .hero-text, .feature {
            display: none;
        }
    .hero-title{
        font-size:24px;
        text-align:center;
    }

    .right{
        padding-top:20px;
    }

    .right > .card > h2{
        font-size:20px;
    }
    .group{
        margin-bottom:10px;
    }

    .input input, .login-btn {
        height: 44px;
    }
}
