
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
  /* display: flex;
    align-items: center;
    justify-content: center;   */
    background-image: url('https://blog.delivery365.app/wp-content/uploads/2023/06/delivery-service-appdelivery365.jpg');
    background-color: rgba(218, 41, 28, 0.1);
    background-repeat: no-repeat;
    background-size: cover;
    animation: fadeIn 1s ease-in;
}

.aa{
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-container {
    width: 80%;
    max-width: 700px;
    margin: 20px auto;
    transform: translateY(0);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.form-header {
    background: linear-gradient(45deg, #DA291C, #FFC72C);
    color: white;
    padding: 25px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.form-body {
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
}

.input-group {
    margin-bottom: 25px;
    width: 80%;
    transition: transform 0.3s ease;
}

/* .input-group:hover {
    transform: translateX(-10px);
} */

label {
    display: block;
    margin-bottom: 12px;
   
    font-weight: 600;
    font-size: 1.1em;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    /* border: 2px solid #FFC72C; */
    border: none;
    border-radius: 8px;
    background: #e0e0de;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    /* border-color: #DA291C;
    box-shadow: 0 0 10px rgba(218, 41, 28, 0.3); */
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.submit-btn {
    background: linear-gradient(45deg, #DA291C, #FFC72C);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto 0;
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.3);
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.4);
}

h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin: 0;
}


/* new */
.input-container {
    max-width: 400px;
    margin: 2rem auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%20292.4%22%20height%20292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    width: 6rem;
}

.country-code-select:focus {
    outline: none;
    border-color: #007bff;
}

.phone-number-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.phone-number-input:focus {
    outline: none;
    /* border-color: #007bff; */
}

.input-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.helper-text {
    margin-top: 8px;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .form-container {
        width: 95%;
    }
}