/* Login Page */
body {
    min-height: 100vh;
}

#loginSection {
    background: radial-gradient(circle at top right, #5f87ff 0%, #16385a 45%, #071728 100%);
}

.login-up {
    min-height: 100vh;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login {
    width: 100%;
}

.login-up::before,
.login-up::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.32;
    animation: floatBlob 9s ease-in-out infinite;
}

.login-up::before {
    width: 380px;
    height: 380px;
    background: #53d8fb;
    top: -120px;
    left: -90px;
}

.login-up::after {
    width: 460px;
    height: 460px;
    background: #8167ff;
    right: -120px;
    bottom: -160px;
    animation-delay: 1.5s;
}

.login .signin {
    text-align: center;
    margin: 0 auto;
    width: min(540px, 100%);
    background: rgba(3, 14, 27, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
    border-radius: 28px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.login .container img {
    width: 120px;
    height: 120px;
    margin-top: -55px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #fff;
}

.signin-header h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 8px;
}

.signin-header p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.login input[type="email"],
.login input[type="password"] {
    margin-top: 20px;
    height: 52px;
    width: 100%;
    font-size: 16px;
    margin-bottom: 8px;
    background-color: #fff;
    padding: 0 16px 0 44px;
    border-radius: 12px;
    border: 1px solid #d8e2f0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.login input[type="email"]:focus,
.login input[type="password"]:focus {
    border-color: #4e8df6;
    box-shadow: 0 0 0 3px rgba(78, 141, 246, 0.15);
    outline: none;
}

.form-input {
    position: relative;
}

.form-input::before {
    content: "\f0e0";
    font-family: "FontAwesome";
    position: absolute;
    left: 14px;
    top: 48px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #2e6ad9;
}

.form-input:nth-child(2)::before {
    content: "\f023";
}

.btn-login {
    margin-top: 16px;
    margin-bottom: 20px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    background: linear-gradient(90deg, #ef8823 0%, #ff5f6d 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(255, 95, 109, 0.36);
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}