/*
    NOTES:
        - Use BEM naming convention
*/

/* Body */
body {
    background-color: #14213d;
    /*background-color: #303655;*/
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Images */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    display: block;
    margin: 0 auto;
    height: 200px;
}

/* Form */
.form {
    background-color: #BFCBCE;
    max-width: 500px; /* add a max-width to limit the size of the form on larger screens */
    margin: 60px auto; /* add some top and bottom margin for spacing */
    padding: 40px; /* add some padding to the form container */
    border-radius: 20px; /* add a border-radius to round the corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* add a subtle box-shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form__h1,
.form__label,
.form__input,
.form__textarea,
.form__button,
.form__select {
    display: block;
    margin-bottom: 20px;
    width: 100%;
}


.form__input,
.form__textarea,
.form__button {
    padding: 10px; /* add some padding for readability */
    font-size: 16px;
}

.form__h1 {
    text-align: center;
}

.form__input {
    height: 30px;
    border: none; /* remove the border */
    border-radius: 20px; /* increase the border-radius for a more modern look */
    padding: 10px 20px; /* add padding for readability */
    font-size: 16px; /* increase the font size */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* add a subtle box-shadow */
    background-color: #fff; /* change the background color to white */
    transition: all 0.2s ease-in-out; /* add a transition for a smooth hover effect */
}

.form__input:focus {
    outline: none; /* remove the default outline */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4); /* increase the box-shadow on focus */
}

.form__button {
    height: 50px;
    background-color: black;
    color: #fff; /* set text color to white */
    border-radius: 20px; /* round the corners of the button */
    cursor: pointer; /* change cursor to pointer on hover */
}

.form__select {
    height: 40px;
    padding: 10px;
    border: 1px solid #888;
    border-radius: 5px;
    appearance: none; /* remove default styles */
    background-color: #fff;
    margin-bottom: 20px;
}

.form__select::-ms-expand {
    display: none; /* hide the default arrow for Internet Explorer */
}

.form__select:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* add a subtle shadow on hover */
}

.form__select:focus {
    outline: none; /* remove the default focus styles */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* add a stronger shadow on focus */
}

.form__select option {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

a {
    color: black;
}

@media only screen and (max-width: 768px) {
    .form {
        margin: 30px auto;
    }
}

/* Button */
.button {
  background-color: #BFCBCE;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

/* Page navigation */
.navigation-container {
    text-align:center;
}

/* Table */
.table {
    background-color: #BFCBCE;
    max-width: 500px; /* add a max-width to limit the size of the form on larger screens */
    margin: 60px auto; /* add some top and bottom margin for spacing */
    padding: 40px; /* add some padding to the form container */
    border-radius: 20px; /* add a border-radius to round the corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* add a subtle box-shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-collapse: collapse;
}

.table__row {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #888;
}

.table__cell {
    width: 30%;
    padding: 10px;
    text-align: center;
}

.table__header-cell {
    font-weight: bold;
    background-color: #BFCBCE;
}

/*
 * Footer
 * */
footer {
    text-align: center;
    color: white;
}
