
.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    margin-bottom: 20px;
    
}

.container {
    background: #112240; /* Deep blue for contrast */
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(28, 25, 23, 0.5); /* Soft shadow for depth */
}

/* Form styling */
form {
    display: block;
    width:93.5%;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    border: 1px solid #1c1917; /* Dark border for depth */
    background: #1f4068; /* Dark blue for input fields */
    color: #e0e1dd; /* Light color for text */
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    color: #a0aec0; /* Light grey for placeholder */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #7f5af0; /* Vibrant purple for focus */
}

/* Button Styling */
button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.375rem;
    background-color: #7f5af0; /* Vibrant purple for buttons */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6246ea; /* A slightly darker purple on hover */
}

/* Text and Label Styling */
.text-center {
    text-align: center;
}

.text-gray-100 {
    color: #f5f5f5;
}

.text-gray-400 {
    color: #f5f5f5;
}

label {
    display: block;
    margin-bottom: .5rem;
    color: #a0aec0;
}



.main-section{
    height: auto;
    width: 100%;
}

.main-section h1{
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;

}

.main-section p{
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
}