*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'DM Sans', sans-serif;
    /* background-color: black;
    color:#fff; */
    line-height: 1.6;
}
.header{
    padding:15px 40px;
}
.container{
    max-width: 500px;
    margin: 40px auto;
    padding:20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.container h1, .container p{
    text-align: center;
    color:#0d0843;
}
/*All Form Styles*/

.container form{
    margin:10px auto;
    /* width:80%; */
}

.form-grouper{
    margin-bottom: 10px;
}
.form-grouper label{
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    color:#276a36;
}
.form-grouper input, .form-grouper select{
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-weight: 400;
}
.form-grouper input:focus, .form-grouper select:focus{
    outline: 2px solid #5fe67c6f;
    border-color: #5fe67c;
}

.flexxer{
    display: flex;
    gap:10px;
    align-items: center;
}

.flexxer .form-grouper{
    flex: 1;
}
.form-grouper button{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color:#0d0843;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0 10px;
    transition: all 0.1s ease-out;
}
.form-grouper button:hover{
    background-color: #0056b3;
}
@media(max-width: 768px){
    .header{
        display: flex;
        justify-content: center;
        padding: 10px 20px;
    }
    .container{
        width: 90%;
        margin: 80px auto;
    }
    .flexxer{
        flex-direction: column;
    }
    .flexxer .form-grouper{
        width: 100%;
    }
}
