html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("./Assets/background.jpg");
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.336);
    border-bottom: 2px solid #0B243B;
    padding: 10px;
    border-radius: 30px;
    margin-top: 20px;
    width: 90%;
}

.header img {
    height: 100px;
    width: 110px;
}

.header h1 {
    margin-left: 30px;
    font-size: 40px;
    font-family: 'Nunito', sans-serif;
    color: #0D2237;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-top: 50px;
    flex: 1;
}

.card {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card h2 {
    color: #0D2237;
    margin-bottom: 20px;
}

.card input[type="text"] {
    width: 80%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

.card button {
    background-color: #0D2237;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.card button:hover {
    background-color: #0056b3;
}

.footer {
    background-color: rgba(0, 0, 0, 0.336);
    border-top: 2px solid #0B243B;
    padding: 15px 20px;
    border-radius: 30px;
    text-align: center;
    margin-top: 50px;
    width: 90%;
    color: #0D2237;
    font-family: 'Nunito', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}
