.mainform {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 950px;
    
    /* height: 671px; */
    height: fit-content; /* ALPEREN */
    
    display: flex;
    flex-wrap: wrap;
    
    /* flex-direction: column; */
    flex-direction: row; /* ALPEREN */

    justify-content: center;
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sol {
    width: 50%;
    
    /* ALPEREN */
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #f5f3f7;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.sag {
    width: 50%;

    display: flex;

    vertical-align: middle;
    align-items: center;
    
}

.imageform {
    width: 100%;
}

.imageform img {
    height: 612px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.form {
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 32px;
}

.logodiv {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    gap: 10px;
    width: 386px;
    height: 56px;
}

.logodiv {
    margin-bottom: 20px;
}

.logo {
    width: 64px;

}

.h1 {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
}

.h2 {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}



.mt10 {
    margin-top: 10px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.text {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    text-align: left;
    width: 100%;
    color: var(--darkblue);
}

.input {
    width: 100%;
    padding: 8px;
}


.button {
    padding: 10px;
    border-radius: 6px;
    background-color: var(--darkblue);
    color: white;
    cursor: pointer;
}

.button:hover {
    background-color: var(--midblue);
}



/* PDSv2 İçin Yapılan Değişiklikler // Bütün projelerde isteniyor mu? */

.input-group {
    display: flex;
}

.input-group input {
    width: 95%;
    border-right: none;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
}

.input-group span {
    width: 5%;
    display: inline-flex;
    height: 35px;
    border-radius: 0px 6px 6px 0px;
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-color: #DBDADE;
    padding-left: 16px;
    padding-right: 16px;
    color: #333333;
    font-size: 15px;
    line-height: 24px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* PDSv2 İçin Yapılan Değişiklikler // Bütün projelerde isteniyor mu? */
