﻿/* ================================
   WRAPPER + BACKGROUND
================================ */
.p-login-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a4da3, #0096c7);
    font-family: 'Segoe UI', sans-serif;
}

/* ================================
   GRID LAYOUT
================================ */
.p-login-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    z-index: 10;
}

/* ================================
   LEFT INFO CARD (MODERN)
================================ */
.p-login-info-card {
    width: 340px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADER */
.p-login-info-header {
    margin-bottom: 25px;
}

    .p-login-info-header h5 {
        color: #0a4da3;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .p-login-info-header p {
        font-size: 13px;
        color: #6c757d;
    }

/* CONTENT */
.p-login-info-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.p-login-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* ICON */
.p-login-info-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

    /* ICON VARIANTS */
    .p-login-info-icon.mission {
        background: rgba(10, 77, 163, 0.1);
        color: #0a4da3;
    }

    .p-login-info-icon.vision {
        background: rgba(0, 150, 199, 0.1);
        color: #0096c7;
    }

/* TEXT */
.p-login-info-item h6 {
    margin: 0;
    font-weight: 600;
    color: #0a4da3;
}

.p-login-info-item p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

/* ================================
   LOGIN CARD
================================ */
.p-login-card {
    width: 360px;
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
}

/* LOGO */
.p-login-logo img {
    height: 80px;
    margin-bottom: 10px;
}

/* TITLE */
.p-login-title {
    color: #0a4da3;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ================================
   INPUTS
================================ */
.p-login-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

    .p-login-input:focus {
        border-color: #0a4da3;
        box-shadow: 0 0 6px rgba(10,77,163,0.3);
        outline: none;
    }

/* ================================
   BUTTONS
================================ */
.p-login-btn-primary {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #0a4da3, #0096c7);
    color: white;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

    .p-login-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* REGISTER BUTTON */
.p-login-btn-register {
    width: 100%;
    padding: 10px;
    border: 1px solid #0a4da3;
    background: transparent;
    color: #0a4da3;
    border-radius: 8px;
    margin-top: 10px;
    transition: 0.3s;
}

    .p-login-btn-register:hover {
        background: #0a4da3;
        color: white;
    }

/* ================================
   LINKS + TEXT
================================ */
.p-login-link {
    text-align: right;
    margin-top: 5px;
}

.p-login-btn-link-small {
    background: none;
    border: none;
    color: #0077b6;
    font-size: 12px;
    cursor: pointer;
}

.p-login-register-note {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: #555;
}

/* ================================
   WATER ANIMATION 🌊
================================ */
.p-login-water {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.p-login-wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 200px;
    opacity: 0.4;
}

.p-login-wave1 {
    background: rgba(255,255,255,0.2);
    animation: wave1 12s linear infinite;
}

.p-login-wave2 {
    background: rgba(255,255,255,0.15);
    animation: wave2 18s linear infinite;
}

.p-login-wave3 {
    background: rgba(255,255,255,0.1);
    animation: wave3 25s linear infinite;
}

@keyframes wave1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes wave2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

@keyframes wave3 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .p-login-container {
        flex-direction: column;
        align-items: center;
    }

    .p-login-info-card,
    .p-login-card {
        width: 90%;
    }
}

