.login-form,
.signup-form {
    display: flex;
    flex-direction: column;
    padding: 0px 30px 30px 30px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

 ::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.login-form button {
    align-self: flex-end;
}

.flex-column>label {
    color: #151717;
    font-weight: 600;
}

.inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.input {
    margin: 0px 10px;
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 100%;
    outline: none;
    background: transparent;
}

.input:focus {
    outline: none;
}

.inputForm:focus-within {
    border: 1.5px solid #2d79f3 !important;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.flex-row>div>label {
    font-size: 14px;
    color: black;
    font-weight: 400;
}

.span {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 500;
    cursor: pointer;
}

.login-form .button-submit {
    margin-top: 30px !important;
}

.forgot-section .button-submit {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.button-submit {
    margin: 20px auto;
    background-color: var(--color-main);
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    padding: 12px 60px;
    cursor: pointer;
}

.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    border: 1px solid #2d79f3;
}

.login-form a {
    text-decoration: none;
    color: #2d79f3;
}

#password-eye-icon {
    display: none;
}

#password-eye-slash-icon.active,
#password-eye-icon.active {
    display: none;
}


/* Right Slider */

.slider-wrapper {
    background: var(--color-main);
    color: white;
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    flex-shrink: 0;
}

.dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.dot {
    width: 14px;
    height: 14px;
    background-color: #ddddddcf;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: white;
    width: 30px;
    height: 14px;
    border-radius: 20px;
}