.height100vh {
    height: 100vh !important;
}

.width100vh {
    max-width: 100%;
}

.bg-image {
    width: 100vw;
    height: calc(100vh - 60px);
    background-image: url(../images/loginbackground.png);
    background-size: cover;
    background-repeat: none;
    border-radius: 30px;
}

.bg-image-darkmode {
    width: 100vw;
    height: calc(100vh - 60px);
    background-image: linear-gradient(to bottom, rgba(15, 0, 34, 0.6) 0%, rgba(15, 0, 34, 0.6) 59%, rgba(15, 0, 34, 0.7) 100%), url(../images/loginbackground.png);
    background-size: cover;
    background-repeat: none;
    border-radius: 30px;
}

.loginContainer {
    padding: 75px;
    max-width: 450px !important;
    min-width: 450px !important;
}

.loginImageContainer{
    padding: 30px;
}

.logoName {
    font-family: 'Roboto';
    color: #0a2f73;
    font-weight: 900 !important;
    font-size: 25px !important;
    text-decoration: none;
}

.logoName:hover {
    color: #0a2f73;
}

.versionText {
    text-align: left;
    font-weight: bold;
    position: fixed;
    right: 15px;
    top: 15px;
    color: #fff;
    opacity: 0.5;
}

.subText {
    color: #fff;
    margin-top: 47px !important;
    font-weight: 600 !important;
    line-height: 50px !important;
}

.loginImage {
    bottom: 0;
    position: relative;
    width: 100% !important;
    margin: 0;
    padding: 0;
    padding-right: 0px !important;
}

.loginRegisterText {
    color: #00a3ff;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}

@media (max-width: 768px) {

    /* Mobil ekranlarda gizle */
    .bg-image-darkmode {
        display: none;
    }

    .bg-image {
        display: none;
    }

    .loginContainer {
        max-width: 100% !important;
        min-width: 100% !important;
    }
}