﻿

.login-wrapper {
    width: 100%;
    max-width: 475px;
    position: relative;
}

/* BLUE WINDOW */
.login-header {
    height: 220px;
    background: linear-gradient(135deg, #1a2560 0%, #1e2d6b 40%, #5a2035 75%, #6b2a3a 100%);
    position: relative;
}

.logo-group {
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 3;
}
/* USER ICON */
.user-circle {
    width: 95px;
    height: 95px;
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid #ff4b5c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.user-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
}


/* WHITE CARD OVERLAPPING */
.login-card {
    background: #ffffff;
    padding: 60px 35px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    margin: -52px 26px 0 26px; 
}

/* TITLE */
.login-title {
    text-align: center;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #0f1f45;
}

/* LABEL */
.login-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0f1f45;
}

/* INPUT */
.login-input {
    height: 50px;
    border-radius: 12px;
    border: 1px solid #cfd7e6;
    background: #eef1f7;
    padding-left: 15px;
}

    .login-input:focus {
        background: #ffffff;
        border-color: #2e3c91;
        box-shadow: none;
    }

/* BUTTON */
.login-btn {
    height: 55px;
    border-radius: 40px;
    background: linear-gradient(135deg, #d7263d, #ff3c5f);
    border: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 17px;
}

    .login-btn:hover {
        opacity: 0.9;
    }

/* FOOTER */
.login-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
}

    .login-footer a {
        color: #7b8794;
        text-decoration: none;
    }

    .login-footer span {
        color: #ff2e2e;
        font-weight: 600;
    }

.divider {
    margin: 8px 0;
    color: #a0aec0;
}


/* Tablet View (iPad) */
@media (min-width: 768px) and (max-width: 1024px) {

    .login-wrapper {
        max-width: 818px;
    }

    .login-card {
        margin: -60px 40px 0 40px;
    }
}
