@import "/_content/MudBlazor/MudBlazor.min.css";
/* Fonts */
@font-face {
    font-family: Manrope;
    /*noinspection CssUnknownTarget*/
    src: url("/fonts/Manrope.ttf") format('truetype');
}

@font-face {
    font-family: Tektur;
    /*noinspection CssUnknownTarget*/
    src: url("/fonts/Tektur.ttf") format('truetype');
}
/* Base layout */
.logo {
    height: 5rem;
    margin: 2rem 0 2rem 0;
}
.accountBaseLayout {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 40%;
    margin-right: 1rem;
}
.account-h2 {
    font-family: Tektur, serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 4rem;
}
.account-h5 {
    color: #FFF;
    font-family: Manrope, serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*-----------------*/
.account-textbox {
    color: #FFFFFF;
    background: #1A1A1A;
    width: 100%;
}
.account-textbox, select {
    color: #FFF;
    font-family: Manrope, serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    background: #1A1A1A;
    border: none;
}
.nav-body-textbox {
    .account-textbox;
    background: #FFFFFF !important;
}
textarea, input:focus{
    outline: none !important;
    background: #1A1A1A;
}
.account-manage {
    display: flex;
    flex-direction: row;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #23232329;
}

.account-manage-body {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    font-size: 20px;
    min-width: 70%;
}
.nav-filed-wrapper {
    position: relative;
    border-radius: 10px;
    min-width: 30%;
    padding: 12px 20px;
    margin: 10px 0;
    box-sizing: border-box;
    background: #1A1A1A;
    display: flex;
    flex-direction: column;

    &:hover {
        box-shadow: 0px 0px 10px 0px #FF3700;
    }
}
.active-nav-item {
    box-shadow: 0px 0px 10px 0px #FF3700;
}

.manage-field-wrapper {
    position: relative;
    border-radius: 10px;
    min-width: 30%;
    padding: 12px 20px;
    margin: 10px 0;
    box-sizing: border-box;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;

    &:hover {
        box-shadow: 0px 0px 10px 0px #FF3700;
    }
    .customFormLabel {
        z-index: 1;
        color: #8D8D8D;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
    }
}

.login-field-wrapper {
    position: relative;
    border-radius: 10px;
    width: 60%;
    padding: 12px 20px;
    margin: 10px 0;
    box-sizing: border-box;
    background: #1A1A1A;
    display: flex;
    flex-direction: column;

    &:focus-within {
        box-shadow: 0px 0px 10px 0px #FF3700;
    }

    .customFormLabel {
        z-index: 1;
        color: #8D8D8D;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
    }
}

/* Common */
.alert-success {
    font-size: 16px;
    font-weight: 700;
    color: #097400;
}
.danger {
    font-size: 16px;
    font-weight: 700;
    color: #FF6157;
}
.account-button {
    color: #FFFFFF;
    -moz-appearance: none;
    border-radius: 10px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    font-family: Manrope, serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: .02857em;
    text-transform: uppercase;
    min-width: 64px;

    background-color: #FF6157;
    min-height: 4.2rem;
    width: 100%;

    &:hover {
        box-shadow: 0 0 10px 0 #FF3700;
        opacity: 0.9;
    }
}
.account-checkbox {
    margin-right: 0.4rem;
    margin-left: 0.2rem;

    &:checked {
        accent-color: #FF3700 !important;
        opacity: 0.9;
    }
}
.link-button {
    background: none!important;
    border: none;
    padding: 0!important;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
}
.link-button:hover {
    color: #FF3700;
}
.text-danger {
    color: #FF6157;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.text-success {
    color: #097400;
}