button {
    font-family: "Outfit", Arial, Helvetica, sans-serif;
    cursor: pointer;
    background: none;
    padding: 0;
    margin: 0;
    border: 0;
}

button,
input,
textarea,
select,
option {
    font-family: "Outfit", Arial, Helvetica, sans-serif;
}

.form100 {
    width: 100%;
}

.form-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-column label {
    color: #444;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0 0 8px;
}

.form-column input { /* For container box such as Login */
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 15px;
    width: auto;
    height: 36px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 25px;
}

.form-column textarea {
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    padding: 9px 15px;
    width: auto;
    height: 60px;
    background-color: white;
    border: 1px solid #ccc;
    resize: none;
}

.form-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.form-row label {
    color: #444;
    font-size: 0.95rem;
    font-weight: 400;
}

.form-row input {
    color: #222;
    font-size: 1.03rem;
    font-weight: 500;
    padding: 0 15px;
    width: 65%;
    height: 44px;
    background-color: #fbfcff;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.form-row textarea {
    color: #222;
    font-size: 1.03rem;
    font-weight: 500;
    padding: 9px 15px;
    width: 65%;
    height: 70px;
    background-color: #fbfcff;
    border: 1px solid #ccc;
    border-radius: 2px;
    resize: none;
}

.form-button {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #888;
    font-weight: 400;
    opacity: 0.9;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #888;
}

@media screen and (max-width: 1200px) {
    .form-row {
        position: relative;
        flex-direction: column;
        justify-content: flex-start;
    }

    .form-row label {
        position: absolute;
        top: -9px;
        left: 10px;
        color: #999;
        font-size: 0.85rem;
        padding: 0 10px;
        background: #fbfcff;
    }

    .form-row input{
        width: 100%;
        height: 50px;
        padding: 0 5vw;
        box-sizing: border-box;
    }

    .form-row textarea {
        width: 100%;
        height: 100px;
        padding: 9px 5vw;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 1128px) {
    .s-imr{ 
    /* S = Special */
    /* Input-Mobile-Right */
    /* Form Row > Input > Mobile - Aligned Right */
        text-align: right;
    }
}

/* Button */

.btn-text {
    position: relative;
    width: fit-content;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    transition: 0.6s ease;
}

.btn-text-red {
    color: #ea5455
}

.btn-text:hover {
    color: #b5bbbb;
}

.btn {
    font-weight: 400;
    text-decoration: none;
    transition: 0.6s ease;
    border-radius: 25px;
}

.btn-normal {
    color: white;
    font-size: 1rem;
    line-height: 1rem;
    padding: 10px 25px 12px;
    background-color: #333;
}

.btn-small {
    color: white;
    font-size: 0.8rem;
    padding: 2px 13px 4px;
    background-color: #333;
}

.btn:hover {
    background-color: #b5bbbb;
}

.round2 {
    border-radius: 25px;
}

.btn-special-padding { /* For button in anchor "a" */
    padding: 8.3px 25px 11.3px;
}

.btn-account-red {
    background-color: #ea5455;
}

.btn-account-delete-pp {
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    padding: 6px 25px 9px;
    background-color: #f3f4f6;
    border: 1px solid #f3f4f6;
    border-radius: 25px;
}

.btn-account-delete-pp.enabled {
    color: white;
    background-color: #ea5455;
    border: 1px solid #ea5455;
    cursor: pointer;
    transition: 0.6s ease;
}

.btn-account-delete-pp.enabled:hover {
    background-color: #b5bbbb;
    border: 1px solid #b5bbbb;
}

#btn-back {
    display: none;
    position: fixed;
    bottom: 28px;
    right: 22px;
    z-index: 20;
    font-size: 0.8rem;
    outline: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    padding: 6px 10px 8px;
}

@media screen and (max-width: 1128px) {
    #btn-back {
        right: 5vw;
    }
}

#btn-back:hover {
    color: #222;
    background-color: #ccc;
}



/* Misc */

.checkbox {
    margin: 3px 15px 0 0;
}

.margin-top13 { 
    /* Custom for "form-buttom" div */
    margin-top: 13.6px;
}

.complete-pg-btn-c {
    display: flex;
    gap: 15px;
    padding-bottom: 35px;
}