.login_section{
    background: radial-gradient(circle at bottom right,
            rgba(66, 126, 143, 0.22),
            transparent 70%),
        #ffffff;
    padding: 50px 0px;
}

.login_container{
    max-width: 650px;
    margin: 50px auto;
    padding: 0px 32px;
}

.login_title {
    display: flex;
    justify-self: start;
    position: relative;
    color: black;
    font-size: 3rem;
    font-weight: 500;
    margin-left: 10%;
}

.login_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 27%;
    height: 6px;
    background-color: var(--starcar-gold);
}

.login_form {
    background-color: #0D0D0D0D;
    padding: 20px 10px 10px 10px;
    border-radius: 8px;
}

.alert.alert-danger{
    font-family: "Exo 2", sans-serif;
    margin-bottom: 10px;
    color: red;
}


.login_form_row {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}


.login_form label {
    font-family: "exo 2", sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.login_form_row span {
    font-weight: 500;
    color: var(--starcar-dark);
}

.login_form input {
    height: 40px;
    width: 100%;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: "exo 2", sans-serif;
    padding-left: 45px;
}

.input_with_icon {
    position: relative;
    display: flex;
    align-items: center;
}

.icon {
    position: absolute;
    left: 10px;
}

.login_form a{
    color: var(--starcar-gold);
    font-weight: 600;
    text-decoration: underline;
}

.agree_terms {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    align-items: end;
    width: 100%;
    margin-bottom: 5px;
}

.agree_terms input {
    width: 20px;
    outline: none;
    border: none;
}


.login_form_submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    gap: 5px;
    width: 100%;
    padding: 8px 0px;
    background-color: var(--starcar-gold);
    border-radius: 8px;
    border: 2px solid var(--starcar-gold);
    color: #000000;
    font-size: 1.5rem;
    font-family: "exo 2", sans-serif;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all .3s;
}

.login_form_submit .submit_icon {
    position: relative;
    right: auto;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.login_form_submit:hover .submit_icon{
    transform: translateX(230px);
}

@media (max-width: 1199px) {
    .login_container{
        padding: 0px 20px;
    }
}

@media (max-width: 768px) {

    .login_section{
        padding: 25px 0px;
    }
    .login_container{
        padding: 0px 12px;
    }

    .login_title{
        font-size: 2rem;
        margin-left: 10px;
    }
}