/* Task 1 */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
}

form {
    display: flex;
    flex-direction: column;
    background: #ecf7fc;
    padding: 20px; /* Ensures space inside the container */
    border-radius: 10px;
    box-shadow: 3px 3px 10px #3b3b3b;
    width: 300px;
    border: 3px, solid, #3b3b3b;
}

.form-group {
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    font-size: 11pt;
    color: #3b3b3b;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}


input {
    width: calc(100% - 30px); /* Prevents sticking to the edges */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px; /* Adds spacing below inputs */
    margin-right: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #ecf7fc;
    border: 5px solid #b6dff1;
    color: black;
    border-radius: 30px;
    cursor: pointer;
}

button:hover {
    background: #d6eef9;
}