@charset "ISO-8859-1";

    /* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}
    

#form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

label {
    margin-bottom: 5px;
}

input {
    padding: 8px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

select{
    padding: 8px;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
}

select > option{
    padding: 15px;
}

.caste_preference{
    display: flex;
    width: 100%;
    margin-bottom: 5px;
}

.starting_letter_specific{
    display: flex;
    width: 100%;
    margin-bottom: 5px;
}

.error{
    margin-top: -30px;
    margin-bottom: 20px;
    color: red;
    font-size: 14px;
    display: none;
}

button {
    padding: 10px;
    background-color: #03461f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #03751ac4;
}