



body{
    font-family: 'Poppins', sans-serif;
    min-height: 100vh; 
    background:var( --pozadi_1);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center; 
    display: flex; 
    flex-direction: column;
  }
  main {
  
    display: flex;
    flex-direction:row;
    justify-content: space-evenly;
    padding-top: 78px;
    flex: 1;
    }
  
  .mid{
    width: 40%;
    
    }
    .right{
    width: 30%;
    }
    .left{
    width: 30%;
    display: flex;
    flex-direction:column;
    align-items:center;
    background-image: var(--pozadi_Lpng);
    background-size: 700px;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
h4{
    color: var(--nadpis_h2);
}
.kon{
    text-align: center;
    margin-top: 20px;
}
.kon h3{
    color: var(--nadpis_h2);
}
.form{  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    margin-bottom: 20px;
}
form h1 {
    font-size:35px;
    text-align: center;
    padding-top: 40px;
    color: var(--nadpis_h1);
    padding-bottom: 20px;
}
form p{
    color:  var(--text);
    text-align: center;
    font-size: 20px;
    padding-bottom: 40px;
 
}

.form form{
    text-align: center;

}

input::placeholder{
    color: var(--nadpis_h3);
}

input{
    width: 300px;
    height: 50px;
    outline: none;
    border: none;
    background: var(--tr_thhover);  
    border-radius: 5px;
    color: var(--nadpis_h1);
    font-size: 20px;
    padding: 5px 10px;
    margin-bottom: 15px;
}
textarea{
    width: 300px;
    height: 100px;
    outline: none;
    border: none;
    background: var(--tr_thhover);  
    border-radius: 5px;
    color: var(--nadpis_h1);
    font-size: 20px;
    padding: 5px 10px;
    margin-bottom: 15px;
}

button{
    width: 300px;
    height: 50px;
    font-size: 20px;
    background: var(--tr_thhover);
    border-radius:5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s linear;
    color: var(--nadpis_h1);
}
button:hover{
    background: var(--tr_tdhover);
}
.errors{
    color: red;
    font-size: large;
    font-size: 25px;
    text-align: center;
    margin: 20px 0 20px 0;
}
.okr{
    color: rgb(0, 14, 168);
    font-size: large;
    font-size: 25px;
    text-align: center;
    margin: 20px 0 20px 0;
}

@media (max-width: 1050px){
    .left{
        display: none;
    }
    .right{
        display: none;
    }
    .mid{
        align-items: center;
        width: auto;
    }
}