* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0080ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
    color: #fff;
}

.background-animation .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, #2196f3);
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.background-animation .circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 50%;
    animation-delay: -2s;
}

.background-animation .circle:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 20%;
    animation-delay: -4s;
}

.background-animation .circle:nth-child(3) {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 30%;
}

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-30px);
        }
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        max-width: 400px;
        width: 100%;
        z-index: 1;
        position: relative;
    }

    .login-box {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 30px;
        margin: 0 20px;
        border-radius: 12px;
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
        text-align: center;
        width: 100%;
        position: relative;
        color: #333;
    }

    .brand-logo img {
        display: block;
        margin: 0 auto;
        width: 35px;
        margin-bottom: 10px;
    }

h2 {
    font-size: 21px;
    color: #2196f3;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}

.input-group {
    display: block;
    padding-bottom: 10px;
}

.input-group input {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    border-bottom: 2px solid #ddd;
    margin-top: 5px;
    outline: none;
    background: transparent;
    color: #2196f3;
    font-size: 13px;
    transition: border-color 0.3s ease-in-out;
}

.input-group input:focus {
    border-color: #1e90ff;
}

.input-group label {
    display: block;
    opacity: .5;
    font-size: 10px;
    color: #2196f3;
    text-align: center;
    font-style: italic;
}

.login-btn {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    padding: 12px;
    background-color: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.login-btn .loading-spinner {
    display: none;
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid #fff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.login-btn:hover {
    background-color: #ffd700;
    color: #1e90ff;
}

.login-btn.loading .loading-spinner {
    display: block;
}

.ou{
    display: flex;
    padding: 5px 0;
    align-items: center;
}
.ou hr{
    width: 100%;
    display: block;
    color: #777;
}
.ou span{
    display: block;
    font-size: 11px;
    padding: 0 10px;
    font-size: 14px;
    color: #777;
}

.btnp a{
    display: block;
    margin: 10px 0;
    color: red;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons .social-icon {
    display: inline-block;
    background: #2196f355;
    border-radius: 100%;
    padding: 5px;
    width: 35px;
    height: 35px;
    margin: 0 10px;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.social-icons .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icons .social-icon:hover {
    transform: scale(1.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
