﻿.RegisterAdminForm {
    min-height: 60vh;
    max-height: 80vh;
    height: 40vw;
    padding: 2rem;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    background-image: url('https://e0.pxfuel.com/wallpapers/246/497/desktop-wallpaper-badass-martial-art-forms-all-women-should-learn-to-break-bones-taekwondo-fighter.jpg');
    background-position-y: 550px;
    background-position-x: -70px;
    background-repeat: no-repeat;
    background-color: black;
    -moz-border-radius: 0.4rem;
    -webkit-border-radius: 0.4rem;
    border-radius: 0.4rem;
}
.LoginAdminForm {
    width:40vw;
    min-width:20rem;
    max-width:30rem;
    min-height: 60vh;
    max-height: 80vh;
    padding: 2rem;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    background-image: url('https://e0.pxfuel.com/wallpapers/246/497/desktop-wallpaper-badass-martial-art-forms-all-women-should-learn-to-break-bones-taekwondo-fighter.jpg');
    background-position-y: 500px;
    background-position-x: -120px;
    background-repeat: no-repeat;
    background-color: black;
    -moz-border-radius: 0.4rem;
    -webkit-border-radius: 0.4rem;
    border-radius: 0.4rem;
}

.MistralCmsCard {
    max-width: 50rem;
    min-width: 60%;
    width:100%;
    margin-top: 1rem;
    box-shadow: 3px 4px 8px rgb(10,10,10, 0.4);
    padding: 1.2rem;
    font-family: 'Sofia sans', sans-serif !important;
    color: #161616;
}
  
/*BUTTONS*/


/*BASE BUTTON - dobierać z głownymi kolorami !*/
.MistralButton {
    width: 100%;
    padding: 0.6rem 2rem;
    box-shadow: 3px 4px 8px rgb(10,10,10, 0.4);
    border:none;
    transition:all 350ms ease;
    text-align:center;
}

.MistralButton span {
    font-family:'Khand',sans-serif !important;
    font-weight: 600 !important;
    font-size: 20px;
    filter: drop-shadow(2px 2px 2px rgba(10,10,10, 0.4)) !important;
}

.ManageButtonsRow {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: row;
}

.dropdown-toggle {
    box-shadow: 2px 2px 6px rgb(10,10,10, 0.2);
    border: solid rgb(10,10,10, 0.2) 0.6px;
}
/* TABLET */
@media screen and (max-width:989px) and (min-width:576px) {
    .ManageButtonsRow {
        display: flex;
        justify-content: space-between;
        gap: 0.8rem;
        flex-direction: row;
    }
}
/* MOBILE */
@media screen and (max-width:575px) {
    .ManageButtonsRow {
        display: flex;
        justify-content: space-between;
        gap: 0.6rem;
        flex-direction: column;
    }
    .LoginAdminForm {
        min-width:12rem !important;
        width:100% !important;
        max-height:fit-content !important;
    }
}
