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

label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
    font-weight: 600;
}

input {
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccd0d5;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

input:focus {
    border-color: #004a99;
    box-shadow: 0 0 0 2px rgba(0, 74, 153, 0.1);
}
