@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
body{
    background-color: #040001;
    font-family: 'Montserrat', sans-serif;
}
.left-side-image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: auto; /* Adjust the width as needed */
    height: 100%;
    z-index: -1;
}
.welcome-section{
    text-align: left;
}
.logo-kocaburun{
    width:200px;
}
.login-welcome-text{
    font-weight: 900;
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    line-height: 64px;
    margin-top: 20px;
    margin-bottom: 20px;
}
form{
    display: flex;
    flex-direction: column;
    background-color: #0B1018;
    padding:40px;
    gap: 10px;
    background-color: #0B1018;
    padding:40px;
    margin-bottom: 40px;
    border-radius: 4px;
}
form label{
    color:#fff;
}
form .form-control{
    padding: 15px 25px;
    border-radius: 4px;
    border: 1.5px solid #181F29;
    background-color: transparent;
    color: #fff;
}
form .form-control:focus{
    background-color: transparent;
    outline: none;
    color: #fff;
    box-shadow: none;
}
form .form-check .form-check-input{
    border: 2px solid #181F29;
    background-color: transparent;
}
form .form-check .form-check-input:focus{
    box-shadow: none;
}
.form-group{
    display: flex;
    flex-direction: column;
    gap:10px;
}
.auth-box{
    margin-top:40px;
}
.button-login:hover, .button-register:hover, .button-forgotten-password:hover, .button-back-login:hover,.button-register-submit:hover{
    color:#fff;
}
.button-login, .button-register-submit{
    border-radius:5px;
    background-color: #ff004c;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    padding: 15px 25px;
}
.button-register{
    border: 2px solid #181F29;
    border-radius:5px;
    background-color: transparent;
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
}
.button-forgotten-password, .button-back-login{
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}
.social-icons-box{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.social-icon{
    display: flex;
    justify-content: center;
    border-radius:4px;
    padding: 10px;
    background-color: #0B1018;
    text-decoration: none;
}
.social-icon i{
    font-size: 20px;
    color: #fff;
}

@media (max-width: 992px){
    body{
        padding-left:16px;
        padding-right:16px;
    }
    .welcome-section{
        text-align: center;
    }
    .login-welcome-text{
        font-size: 42px;
        line-height: 46px;
    }
}