body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    background-color: #262054;
}

.login-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.left-panel, .right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-panel {
    background: #262054;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-shapes span {
    position: absolute;
    bottom: -50px;
    opacity: 0.6;
    animation: floatUp linear infinite;
}

.shape-circle {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.shape-square {
    background: rgba(255, 255, 255, 0.15);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 17px solid rgba(255, 255, 255, 0.15);
    background: none;
}

.shape-star {
    width: 0;
    height: 0;
    color: rgba(255, 255, 255, 0.15);
    font-size: 20px;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-120vh) scale(1.2);
        opacity: 0;
    }
}

@keyframes slideFromTop {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.right-panel {
    background: #fff;
}

.login-image {
    max-width: 80%; 
    height: auto;
    z-index: 1;
    animation: slideFromLeft 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.login-form {
    width: 50%;
}

.Dunbrae_Text_logo {
    max-width: 45%;
    height: auto;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    animation: slideFromTop 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.input-group {
    position: relative;
    margin: 60px 0;
    animation: slideFromTop 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.input-label {
    position: absolute;
    top: -30px;
    left: 0;
    font-size: 14px;
    color: #262054;
}

.input-group i {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #262054;
    padding: 10px 15px;
}

.input-group input {
    width: 95.5%;
    padding: 15px 10px;
    border: none;
    font-size: 16px;
    background-color: #f3f3f3;
}

.input-group i.input-icon-hidden {
    display: none;
}

.line-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.line-separator .line {
    flex: 1;
    height: 2px;
    background-color: #262054;
    margin: 0 10px;
}

.separator-logo {
    height: 60px;
    width: auto;
    animation: riseAndSpin 1.6s ease-out forwards;
}  

@keyframes riseAndSpin {
    0% {
        transform: translateY(50px) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
    }
}


.login-btn {
    width: 100%;
    padding: 15px 10px 15px 10px;
    background-color: #1f1f57;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    animation: slideFromTop 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.login-btn:hover {
    background-color: #162a4f;
}

.remember-me-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: -40px 0 20px 0;
    gap: 8px;
    width: 100%;
    padding-left: 2px;
    animation: slideFromTop 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.remember-me-row input[type="checkbox"] {
    margin: 0;
}

.remember-label {
    font-size: 14px;
    color: #262054;
}