@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f9;
}

.form-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input {
    padding: 10px;
    font-size: 16px;
    font-family: inherit;
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
}

button {
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

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

.result {
    margin: 20px 0px;
    padding: 10px;
    background: #e9ecef;
    border-radius: 8px;
    text-align: center;
}

.result ul {
    padding: 0;
}

.result ul li {
    list-style: none;
}


.red {
    color: red;
}

/* new styles */
.form-title {
    display: flex;
    align-items: center;
}

.form-logo img {
    width: 200px;
}

.form-note {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}