.custom-login-form {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.custom-login-form label {
    display: block;
    margin-bottom: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--wp--preset--font-family--manrope);
}

.custom-login-form input {
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
}

.custom-login-form input::placeholder{
  color: black;
}

.custom-login-form input[type="submit"] {
    width: 100%;
    opacity: 1;
    background: #fbfaf3;
    color: black;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.custom-login-form input[type="submit"]:hover {
    opacity: .75;
}
