:root {
    --primary-background: #222222;
    --secondary-background: #393939;
    --disabled-background: #232323bf;
    --footer-background: linear-gradient(90deg, rgba(241,89,26,1) 0%, rgba(243,129,81,1) 100%);
    --subscribe-background: linear-gradient(90deg, rgba(175, 20, 143, 1) 0%, rgba(211, 70, 182, 1) 100%);
}

@font-face {
    font-family: 'Inter';
    src: public_path('/fonts/Inter/Inter-Reguler.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: public_path('/fonts/Bebas_Neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "Inter", sans-serif;
    color: #45474F;
    background-color: white;
}

.user-panel-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: clamp(4rem, 1vw, 6rem);
    align-items: center;
    gap: 28px;
}
.user-panel-page .logo-brand {
    display: flex;
    width: 400px;
    padding: 8px;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
    /* aspect-ratio: 189.79/61.00; */
}
.user-panel-page .card {
    display: flex;
    /* width: clamp(375px, 4vw, 655px); */
    max-width: clamp(440px, 4vw, 755px);
    padding: 28px 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.form-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}

.form-title .title {
    align-self: stretch;

    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1vw, 1.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.form-title .subtitle {
    align-self: stretch;

    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1vw, 1.5rem);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-login {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
}

.form-fill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.form-control {
    display: flex;
    min-width: 168px;
    padding: 8px 14px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    font-size: .85rem;

    border-radius: 8px;
    border: 1px solid #CFCFCF;
    background: #FFF;
}
.footer-background {
    min-width: 100px;
}

.btn-primary, .footer-background {
    height: 44px;
    background: rgb(241,89,26);
    background: -moz-linear-gradient(90deg, rgba(241,89,26,1) 0%, rgba(243,129,81,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(241,89,26,1) 0%, rgba(243,129,81,1) 100%);
    background: linear-gradient(90deg, rgba(241,89,26,1) 0%, rgba(243,129,81,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f1591a",endColorstr="#f38151",GradientType=1);
}

.footer-background[disabled] {
    background-color: var(--disabled-background) !important;
    background: var(--disabled-background) !important;
    opacity: 1;
}
.underline {
    text-decoration: underline;
}