input[type="text"], input[type="password"] {
    font-size: 15px;
    font-weight: lighter;
    padding: 4pt 4pt;
    margin-top: 4pt; /* Add top margin */
    margin-bottom: 8pt; /* Add bottom margin */
    width: 100%;
    box-sizing: border-box;
    color: #1D3461;
    background-color: rgba(0, 0, 0, 0);
    border: none; /* Remove all borders */
    border-bottom: 1pt solid #d1ccdc; /* Add a bottom border */
    text-indent: 0;
}

::placeholder {
  color: #d1ccdc;
  opacity: 1; /* Firefox */
}


input[type="submit"] {
    font-size: 20px;
    background: linear-gradient(to right, #1089d1, #1D3461);
    padding: 5pt 5pt;
    border-radius: 10pt;
    width: 100%;
    box-sizing: border-box;
    margin-top: 15pt;
    color: #ffffff;
    border: none; /* Remove all borders */
}

label {
    font-size: 18px; /* Set the font size */
    color: #1D3461; /* Set the text color */
    padding-top: 8pt;
    padding-bottom: 8pt;
    text-align: left;
}