h1 {
    font-size: 15px;
    margin-left: 10%;
    padding: 10px;
}

body {
    tect-align: center;
}

.container {
    max-width: 30%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
}

form {
    display: flex;
    flex-direction: column;
}

h1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

input[type="text"],
input[type="password"],
input[type="number"],
select {
    width: 200px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-left: 10px;
}

input[type="submit"] {
    width: 100px;
    margin-top: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #555;
}

#password-validation {
    font-size: 14px;
    margin-left: 10px;
    margin-bottom: 10px;
}

#password-indicator {
    position: absolute;
    display: inline-block;
    left: 65%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.password-invalid {
    background-color: red;
}

.password-valid {
    background-color: green;
}
