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

.reset_container{
    max-width: 650px;
    margin: 50px auto;
}

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

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

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

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

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

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

.reset_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;
}

.reset_form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    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;
    transition: all .3s;
}

.reset_form_submit:hover {
    padding: 10px 12px;
}

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

@media (max-width: 768px) {

    .reset_section{
        padding: 25px 0px;
    }
    .reset_container{
        padding: 0px 12px;
    }

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