:root{
    --border_color: #578FCA;
    --background_color: #3674B5;
    --text_color: white;
    --heading_color: #3674B5;
    --container_background_color: white;
    --field_text_color:#3674B5;
    --logo_width: 300px;
    --h_font_style: "bauhaus 93";
    --div_2_direction: row;
}

@media (prefers-color-scheme: dark) {
    :root {
        --border_color: #578FCA;
        --background_color: #3674B5;
        --text_color: white;
        --heading_color: #3674B5;
        --container_background_color: white;
        --field_text_color:#3674B5;
    }
}


@media (max-width: 600px) {
    :root {
        --logo_width: 150px;
        --div_2_direction: column;
    }
}




body{
    background-color: var(--background_color);
    display:flex;
    flex:1;
    width:100%;
    height:100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    
}




.logo{
    width: var(--logo_width);
    height: auto;
    
}

.logo:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}


.div1{
    background-color: var(--background_color);
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.div2{
    background-color: var(--background_color);
    display:flex;
    flex:1;
    width:100%;
    flex-direction: var(--div_2_direction);
    justify-content: space-around;
    align-items: center;
}


.div7{
    background-color: var(--background_color);
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div_panel{
    background-color: var(--container_background_color);
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 2px solid var(--border_color);
    margin: 40px;
    padding: 40px;
    border-radius: 10px;
}

form{
    background-color: var(--container_background_color);
    display:flex;
    width:100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    
}


button{
    display:flex;
    flex:1;
    justify-content: center;
    align-items: center;
    width:100%;
    background-color: var(--border_color);
    color: var(--text_color);
    padding: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}


.text_field{
    background-color: var(--container_background_color);
    display: flex;
    width: 100%;
    height: 40px;
    border: 1px solid var(--border_color);
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    color: var(--field_text_color);
}



.b_heading{
    color: var(--text_color);
    font-family: var(--h_font_style);
}


.f_heading{
    color: var(--heading_color);
}

.button_link {
    text-decoration: none;
    display:flex;
    flex:1;
    justify-content: center;
    align-items: center;
    border-color: var(--border_color);
    background-color: var(--container_background_color);
    color: var(--border_color);
    padding: 20px;
    border: 2px solid var(--border_color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.button_link:hover{
    border-color: var(--container_background_color);
    background-color: var(--border_color);
    color: var(--container_background_color);
    
}



.link_button_container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


.button_header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
