body {
    font-family: Inter, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.form-group input {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.note{
    margin-top: 5px;
    font-weight: 600;
}

.submit-btn{
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}

.error-message {
    color: red;
    font-weight: bold;
    display: none;
}

.success-message {
    color: green;
    font-weight: bold;
    display: none;
}