﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0f60b6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    display: flex;
    width: 700px;
    height: 450px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.left-panel {
    width: 50%;
    background: linear-gradient(135deg, #007bff, #0047ab);
    color: white;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

    .left-panel h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center;
        margin-top: 160px;
    }

    .left-panel h5 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .left-panel p {
        font-size: 12px;
        line-height: 18px;
        color: #dcdcdc;
    }

/* Bubbles */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: floatBubble 6s ease-in-out infinite;
}

.circle1 {
    width: 100px;
    height: 100px;
    top: 5px;
    left: -30px;
    animation-duration: 7s;
    animation-delay: 0s;
}

.circle2 {
    width: 80px;
    height: 80px;
    bottom: 70px;
    left: 20px;
    animation-duration: 5s;
    animation-delay: 1s;
}

.circle3 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    right: -30px;
    animation-duration: 8s;
    animation-delay: 0.5s;
}

@keyframes floatBubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-30px) scale(1.02);
        opacity: 0.85;
    }

    50% {
        transform: translateY(-50px) scale(1.05);
        opacity: 1;
    }

    75% {
        transform: translateY(-20px) scale(1.02);
        opacity: 0.85;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
}


.right-panel {
    width: 50%;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .right-panel h3 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 20px;
    }

.form-control {
    height: 40px;
    border-radius: 8px;
    font-size: 13px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
}

.form-check-label, .forgot-password {
    font-size: 12px;
}

.btn-primary {
    height: 42px;
    border-radius: 8px;
    background-color: #003399;
    border: none;
    font-weight: 600;
    font-size: 14px;
}

.alert {
    padding: 8px;
    font-size: 13px;
}



.divider {
    text-align: center;
    position: relative;
    margin: 15px 0;
    font-size: 12px;
    color: #888;
}

    .divider::before, .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40%;
        height: 1px;
        background-color: #ddd;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

.btn-outline-secondary {
    height: 42px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.signup-text {
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}

    .signup-text a {
        font-weight: 600;
        text-decoration: none;
        color: #007bff;
    }
