body {
    font-family: 'Arial', sans-serif;
    background-color: #d7d9db;
    margin: 0;
    padding: 0;
}

.navbar {
    border-bottom: 1px solid rgb(45, 19, 192); /* Match the h1 color */
    height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 23px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 28px;
    font-weight: bold;
    color: rgb(48, 10, 117); /* Set to your desired color */
    text-align: center;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.re {
    font-size: 36px;
    font-weight: bold;
    color: rgb(19, 3, 75); /* Set to your desired color */
    font-family: 'Cambria', 'Cochin', 'Georgia', 'Times', 'Times New Roman', serif;
    text-align: center;
}

label {
    font-weight: bold;
    font-size: 16px;
    color: rgb(57, 11, 141); /* Set to your desired color */
    margin-bottom: 5px;
    font-family: sans-serif;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(17, 117, 223, 0.25);
}

textarea.form-control {
    resize: vertical;
    height: auto;
}

.form-control::placeholder {
    color: #888;
    opacity: 1;
}

.btn-primary {
    background-color: rgb(40, 7, 100); /* Set to your desired color */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-bottom: 30px;
}

.btn-primary:hover {
    background-color: rgb(37, 0, 139); 
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}
.phone-input-container {
    display: flex;
}

.phone-input-container select {
    width: 10px; /* Adjust this value */
    height: 42px;
    margin-right: 10px;
}

.phone-input-container input {
    flex: 1;
}



@media (max-width: 576px) {
    .container {
        padding: 20px;
    }
}

