

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #a1c4fd;
    padding: 50px;
}

* {
    box-sizing: border-box;
}

/* Add padding to containers */
.container {
    padding: 30px;
    background-color: white;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px ;
}

p {
    margin-top: 10px;
    margin-bottom: 1rem !important;
}

/*
input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
*/
/* Full-width input fields */
/* input[type=text],
input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
} */

input[type=text]:focus,
input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

#submit {
    font-size: 16px;
}

/* Overwrite default styles of hr */
hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Set a style for the submit button */
.btnSubmit {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btnSubmit:hover {
    opacity: 1;
}

select, input {
    font-size: 16px;
}

/* Button back to top */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: blue;
    color: white;
    cursor: pointer;
    padding: 13px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}

.row {
    margin-top: 20px;
}

hr {
    border: 1px solid #555 !important;
    margin-bottom: 25px;
}

.bottom {
    margin-top: 35px;
}