
.formflex {
    display: flex;
}

.formcol {
    flex: 1;
}

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


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

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

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

.formlink {
    color: rgba(255, 255, 255, 1.0);
}

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

.forminfo {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    color: #fff;
    background-color: #4ba15c;
    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: 2px;
    border: solid 1px rgba(255, 255, 255, 0.2);
    -webkit-appearance: none;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="number"]:focus {
    border: solid 1px rgba(255, 255, 255, 0.8);
    outline-width: 0;
}

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

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