/* ✅ Circular Back Button */
.back-btn-custom {
    width: 45px;
    /* ✅ Good clickable size */
    height: 45px;
    border-radius: 50%;
    /* ✅ Perfect Circle */
    background-color: #011044;
    /* ✅ Dark Blue Background */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    /* ✅ Soft Shadow */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ✅ Icon Styling */
.back-btn-custom i {
    color: #fff;
    /* ✅ White Icon */
    font-size: 1.2rem;
}

/* ✅ Hover Effect */
.back-btn-custom:hover {
    background: #0330aa;
    /* ✅ Slightly lighter blue */
    transform: scale(1.1);
    /* ✅ Smooth Zoom on Hover */
}

.custom-select-size {
    font-size: 1rem;
    padding-top: 1.2rem;
    padding-bottom: 0.5rem;
    height: calc(3.5rem + 2px);
}


.submitbtn {
    background: linear-gradient(135deg, #4251C8, #131A4F);
    padding: 0.6rem 1.5rem;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

.submitbtn:hover {
    background: linear-gradient(135deg, #131A4F, #4251C8);
    color: #fff;
    transform: translateY(0px);
}