@font-face {
    font-family: myFirstFont;
    src: url(https://storage.unitedwebnetwork.com/files/1273/ac634e46c7a3a0e18b67b0e00b99b422.ttf);
  
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* General styles */
body {
    font-family: myFirstFont !important;
    background-color: #eee !important;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
footer {
    text-align: center;
    display: none;
}

/* Form Container */
body {
    margin: 30px auto;
}

.fForm {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.no-title .page-title,
.path-user-login- .page-title,
.path-user-account-recover- .page-title,
.path-register- .buttons a {
    display: none;
}
@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-item {
    display: flex;
    flex-direction: column;
}

.form-item label {
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
.fForm select {
    -webkit-appearance: none;
    background-color: #fff;
    line-height: 1.5em;
    color: #000;
    border: 1px solid #aeb0b6;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 0.2em 0.3em;
    box-shadow: inset 1px 1px 4px 1px #ddd;
    min-height: 31px;
    padding: 0 8px !important;
    width: auto !important;
    font-size: 14px !important;
    font-family: myFirstFont !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
.fForm select:focus {
    border-color: #317dff;
}

input[type="submit"],
.fButton {
    width: 100% !important;
    padding: 12px;
    background: #b03b9b;
    text-shadow: none;
    border-radius: 32px;
    padding: 12px 5% !important;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px auto;
    color: #fff;
    font-family: myFirstFont !important;
}

input[type="submit"]:hover,
.fButton:hover {
    background: #fb25ed !important;
    cursor: pointer;
}
/* Footer */
.footer {
}


.fForm fieldset {
    border-top: none;
    margin: 0;
    padding: 0;
}
.fForm label {
    width: 100%;
    text-align: left;
    display: block;
    float: none;
    font-weight: normal;
}
.fForm .buttons {
    padding-left: 0 !important;
}
.fForm .hint, .fForm .error {
    margin-left: 0;
}
fieldset legend {
    display: none;
}

footer p {
    margin: 0;
}
.fBanner img {
    width: 100%;
}
.wrap {
    max-width: 100% !important;
    background: #fff;
    width: 100%;
}
body > * {
    max-width: 500px !important;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
}
.path-home- .buttons a {
    display: none;
}
.fForm .form-item-option {
    margin: 0 !important;
}
.fForm .form-item-option label {
    position: relative;
}
.fForm .form-item-option label input {
    top: 9px;
}
@media (max-width: 480px) {
    body {
        padding: 0 20px;
    }
    input[type="text"], 
    input[type="email"], 
    input[type="password"], 
    .fForm select {
        width: 100% !important;
    }
    body > * {
        padding: 20px;
    }
}