@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Roboto:wght@300&display=swap');

body{
    margin: 0;
    font-family: 'Roboto', 'sans serif';
}

.wrapAll{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
}

.leftPart{
    width: 100%;
    /* background-color: salmon; */
    display: block;
}

.upperLeft{
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: -50px 0 0 5px;
    /* background-color: salmon; */
    align-items: center;
}

.logoGo711{
    width: 185px;
    height: 185px;
}

.logoGo711 img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* .logoDJP{
    width: 140px;
    height: 70px;
}

.logoDJP img{
    object-fit: contain;
    width: 100%;
    height: 100%;
} */
.rightPart{
    width: 100%;
    height: 100vh;
}

.rightPart img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.teksForm{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 30px;
}

.teksForm p{
    font-family: 'Montserrat', 'sans serif';
    font-size: 3em;
    margin: 0;
}

#soft{
    font-family: 'Roboto', 'sans serif';
    font-size: 1em;
    margin: 0;
    opacity: 0.7;
}

.box{
    width: 500px;
    padding: 10px;
    font-size: 0.9em;
}


.formLogin{
    display: flex;
    place-content: center center;
    margin-top: 50px;
}

.formLogin form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formLogin form button{
    width: 524px;
    margin-top: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-image: linear-gradient(45deg,rgb(5, 59, 80),rgb(23, 107, 135)) ;
    border: none;
    color: white;
    padding: 12px;
}

#regiz{
    background-image: linear-gradient(45deg,rgb(5, 59, 80),rgb(84, 180, 53)) ; 
}

.formLogin form button:hover{
    opacity: 0.8;
    cursor: pointer;
}

.register{
    width: 100%;
    text-align: center;
    margin-top: 50px;
}