* {
    box-sizing: border-box;
    font-family: "Poppins", serif;

    margin: 0;
    padding: 0;
}

body {
    background-color: #f9f2e2;
    color: #4a4a4a;
}

.header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #832526;
    /* color: #fff; */
}

.logo {
    font-size: 1.2em;
    font-weight: bold;
    font-style: italic;
    flex: 1;
    color: white;
}

.header-image img {
    max-width: 60px;
    height: auto;
    display: block;
    margin: auto;
}

.form-container {
    background-color: #fff;
    margin: 20px auto;
    padding: 20px;
    width: 95%;
    /* max-width: 400px; */
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); */
    /* border-radius: 8px; */
}

.form-container h2 {
    text-align: center;
    color: #9d1214;
    margin-bottom: 20px;
}

.input-container {
    position: relative;
    margin-bottom: 15px;
}

label {
    /* display: block; */
    margin-bottom: 5px;
    color: #9d1214;
    font-weight: bold;
    /* font-weight: bold; */
}

.input-container input {
    width: 100%;
    padding: 10px;
    padding-right: 30px; 
    border: solid 1px #cbcbcb;
    padding: 0 20px;
    height: 50px;
    font-family: "Poppins", serif;
    font-size: 14px;
    line-height: 50px;
    /* border-radius: 5px; */
    color: #9d1214;;

    /* background: none; */
    /* border: 0; */
    
}

.info-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9d1214;;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
}

button {
    font-family: "Poppins", serif;
    width: 50%;
    font-weight: bold;
    padding: 10px;
    background-color:white;
    color: #9d1214;
    border: 2px solid #9d1214;
    /* border: none; */
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    color: white;
    background-color: #9d1214;;
}

.links {
    /* text-align: center; */
    /* display: flex; */
    /* margin-top: 20px; */
    padding: 5px;
    background-color: white;
}
.footer-links{
    text-align: center;
    margin-top: 20px;
}

.links a {

    color: #9d1214;
    text-decoration: none;
    /* font-weight: bold; */
    margin: 0 10px;
}
.footer-links a{
    color: #9d1214;
    text-decoration: none;
    margin: 0 10px;
    text-decoration: none;
}

.links a:hover, .footer-links a:hover {
    text-decoration: underline;
}

.footer-links p {
    /* margin: 10px 0; */
}
