.registration-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px #1c1c1c16;
    width: 65%;
    max-width: 750px;
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.form-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.registration-form h2 {
    /* margin-bottom: 20px; */
    /* font-size: 2rem; */
    font-size: 1.4rem;
    color: #3f70f6;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
}


.form-group {
    margin-bottom: 1.25rem;
    /* position: relative; */
}

.form-control {
    width:calc(100% - 2rem);
    box-shadow: 2px 2px 10px #1c1c1c16;
}
.btn-primary {
    background-color: #fff;
    border: 1px solid #5d87ff;
    color: #5d87ff;
    padding: 0.325rem 1.2rem;
    transition: background-color 0.3s, border-color 0.3s;
}
.btn-primary:hover {
    background-color: #5d87ff;
    border: 1px solid transparent;
    color: #fff;
}
.input-wrapper {
    position: relative;
}
.eye-icon {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 5px;
}

.agent_input_field::placeholder{
    color: #5d87ff;
}
.agent_input_field,select{
    border: 1px solid #1c1c1c16;
    background-color: #faf9f9;
    color: #3f70f6;
    /* color: #5d87ff; */
    width:calc(100% - 2rem);
    outline: none;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    /* box-shadow: 2px 2px 10px #1c1c1c0a; */
}
select{
    padding: 0.5rem .75rem;
}
.agent_input_field:focus,
select:focus{
    border: 1px solid #5d88ff69;
}
#logo_login{
    width: 130px;
}