.formflex {
    display: flex;
}

.formcol {
    flex: 1;
}

.formcol.colleft {
    padding-right: 10px;
}


.formlabel {
    font-size: 14px;
    padding: 0px 0px 10px 2px;
    width: 100%;
}

.formfield {
    width: 100%;
    padding-bottom: 10px;
}

.formprompt {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.formlink {
    color: rgba(0, 0, 0, 1.0);
    text-decoration: underline;
    text-decoration-style: dotted;
}

.formlink:hover {
    color: rgb(0, 122, 179);
    text-decoration: underline;
    text-decoration-style: dotted;
}

.formwarn {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    color: #a80606;
    background-color: #ffc9c9;
    border: solid 1px #c17979;
    border-radius: 4px;
}

.forminfo {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    color: #062f0e;
    background-color: #c2efcb;
    border: solid 1px #bcffc3;
    border-radius: 4px;
}


input {
    width: 100%;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="number"] {
    padding: 10px 8px;
    border-radius: 4px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    font-size: 16px;
    background-color: rgba(136, 205, 237, 0.1);
    color: #000;
}

input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="text"]::placeholder,
input[type="number"]::placeholder {
    font-size: 14px;
    color: rgba(118, 175, 201, 0.9);
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="number"]:focus {
    border: solid 1px rgba(0, 0, 0, 0.1);

    outline-width: 0;
}

input[type="number"].input_currency {
    padding-left: 23px;
    width: 310px;
    box-sizing: border-box;
}

input[type="radio"] {
    cursor: pointer;
}