* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General */
body {
    font-family: "Inter", sans-serif;
}

/* Left Side */
.left-side {
    /* display: flex;
    flex-direction: column; */
}

/* Logo */
.logo {
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2110bc;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px #00c9ff;
}

/* Labels */
label {
    color: #4661ac;
    font-weight: 600;
}

/* Inputs */
.form-control {
    border-bottom-right-radius: 24px !important;
    border-top-right-radius: 24px !important;
    padding: 16px 18px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #2110bc;
    box-shadow: 0 0 8px rgba(0, 201, 255, 0.3);
}

/* Input-group icons */
.input-group-text {
    border-top-left-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
}

/* Button */
.btn-custom {
    background:linear-gradient(135deg, #120457, #4661ac);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px;
    transition: 0.3s ease;
    border-radius: 67px;
    }

.btn-custom:hover {
    /* transform: scale(1.03); */
    box-shadow: 0 10px 25px rgba(18, 4, 87, 0.3);
    background: linear-gradient(135deg, #120457, red);
    color: #fff;
}

/* Right Side Image */
.right-side img {
    /* height: 100vh; */
    object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
    /* .right-side {
        display: none;
    } */

    .left-side {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .form-control {
        font-size: 0.9rem;
        padding: 12px;
    }

    .input-group-text {
        padding: 8px 10px;
    }

    .btn-custom {
        font-size: 1rem;
        padding: 12px;
    }
}

.main-card{
        box-shadow: 0 10px 25px rgba(18, 4, 87, 0.3);
}