#wrapper{
    padding-top: 0 !important;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 99;
}

.particles span {
    position: absolute;
    border-radius: 50%;
    font-size: xx-large;
}

/* Colors */
.color1 {
    opacity: 0.6;
}

.color2 {
    color: #ff00ff;
}

.color3 {
    color: #00ff6a;
}

.color4 {
    color: #7f00ff;
}

/* RANDOM FLOATING ANYWHERE */
@keyframes floatRandom {
    0% {
        transform: translate(var(--startX), var(--startY)) scale(0.4);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--endX), var(--endY)) scale(1);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.login-error{
    text-align: center;
    background: white;
    border-radius: 5px;
}

body {
    background: linear-gradient(45deg, #ffe3c8, transparent);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 80vw !important;
    height: 80vh;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    background: radial-gradient(circle at center, #ed9c4d, #ea7c115c);
    padding: 0 !important;
}

/* LEFT PANEL */
.left {
    flex: 1;
    /* background: radial-gradient(circle at center, #ed9c4d, #ea7c115c); */
    color: #fff;
    position: relative;
    padding: 60px;
}

.left small {
    color: #cfcfcf;
    font-size: 13px;
}

.left h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-top: 30px;
    font-weight: 600;
}

.phone-img {
    width: 100%;
    height: 65%;
}

/* RIGHT PANEL */
.right {
    flex: 1;
    background: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

.signin-box {
    max-width: 400px;
    margin: auto;
    width: 100%;
}

.signin-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 500;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #e5e5e5;
    outline: none;
    font-size: 14px;
}

.input-group.input-with-icon-left input {
    padding-left: 65px;
}

/* BUTTON */
.btn-3d {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ea7c11, #ff9a2a);
    transition: all 0.3s;
    box-shadow: 0 2px #ea7c11;
}

.btn-3d:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}

.btn-3d:focus {
    box-shadow: none;
}

.btn-3d:active {
  box-shadow: 0 2px #ea7c11; /* Smaller shadow makes it look closer to the "surface" */
  transform: translateY(3px); /* Moves the button down */
}

.title {
    color: #fff;
}