/* Background with Orange Gradient */
body {
    background: linear-gradient(to bottom right, #ff7b00, #ff9d42, #fff); /* Adjust colors as needed */
    background-repeat: no-repeat;
    height: 110vh;
    margin: 0;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;

}

/* Card Styling */
.card {
    border-radius: 15px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8;
    margin: 0 auto;
    padding: 20px;
}

/* Headings */
h3 {
    color: #ff7b00;
    font-weight: bold;
    font-size: 15px; /* Adjust on smaller screens */
    margin-bottom: 15px;
    text-align: center;
 
}

/* Input Fields */
.textbox input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.textbox input:focus {
    border-color: #ff7b00;
    outline: none;
}

/* Buttons (Base Style) */
.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Primary Button with Animation */
.btn-primary {
    background-color: #ff7b00;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 100px;
    transition: all 0.3s;
    position: relative;
}

.btn-primary:hover {
    background-color: #ff9d42;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.3s ease-in-out;
}

.btn-primary:hover::after {
    left: 100%;

}