* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
}

:root {
    --auth-bg: #fff;
    --auth-blue: #1c7db0;
    --auth-stone: #555555;
    --auth-btn: #272d6b;
    --auth-input-border: #e4e4e4;
    --auth-label-color: #2d2d2e;
    --auth-input-bg: #fff;
    --auth-checkbox-border: #050505;
    --auth-black: #000000;
    --auth-placeholder: #a3a3a3;
    --auth-gradient-start: #1c7db0;
    --auth-gradient-end: #272d6b;
}

body.dark {
    --auth-bg: #181d23;
    --auth-blue: #fff;
    --auth-stone: #fff;
    --auth-btn: #1c7db0;
    --auth-input-border: #353b47;
    --auth-label-color: #fff;
    --auth-checkbox-border: #fff;
    --auth-input-bg: #232733;
    --auth-black: #4d5e7a;
    --auth-gradient-start: #181d23;
    --auth-gradient-end: #181d23;
}

.auth-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}

.auth-left-section {
    background: var(--auth-bg);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 3.5rem 4rem 1rem 4rem;
    position: relative;
}

.auth-logo-wrapper {
    width: 100%;
    max-width: 200px;
    object-fit: cover;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.back-nav-button a{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    margin-top: 20px;
    color: var( --back-button);
}
.dark .auth-section .auth-left-section .auth-logo-wrapper .back-nav-button a svg path{
    stroke: white;
}
.auth-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.auth-form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form-header h1 {
    color: var(--auth-blue);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
}
.auth-form-header p {
    color: var(--auth-stone);
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.auth-footer p {
    color: var(--auth-stone);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0;
    margin: 0;
}
.auth-form {
    width: 100%;
}
.auth-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-feild {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-feild label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--auth-label-color);
}

.form-feild input {
    width: 100%;
    outline: none;
    height: 50px;
    border: 1px solid var(--auth-input-border);
    border-radius: 14px;
    padding: 0 1rem;
    background: var(--auth-input-bg);
    color: var(--auth-label-color);
    font-size: 1rem;
}
.form-feild input::placeholder {
    color: var(--auth-placeholder);
    font-size: 1rem;
}
.form-feild-icon-wrapper {
    width: 100%;
    position: relative;
}

.eye-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    stroke: #555555;
    cursor: pointer;
}

.link-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.link-wrapper a {
    text-decoration: none;
    color: var(--auth-label-color);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
.checkbox-feild {
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox-feild input {
    width: 1.8rem;
    height: 1.8rem;
    accent-color: var(--auth-btn);
    outline: none;
    border: 1px solid var(--auth-checkbox-border);
    box-shadow: none;
}

.checkbox-feild label {
    color: var(--auth-label-color);
    font-size: 14px;
    font-weight: 400;
}

.auth-btn-wrapper {
    width: 100%;
}
.auth-btn-wrapper button {
    width: 100%;
    height: 50px;
    text-align: center;
    background: var(--auth-btn);
    border-radius: 20px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #fff;
}
.auth-left-img-wrapper {
    position: absolute;
    width: 100%;
    max-width: 150px;
    bottom: 0;
    right: 0;
}
.auth-left-img-wrapper img {
    width: 100%;
    height: 100%;
}

.otp-timmer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin-top: 6px;
}

.otp-timmer-wrapper p {
    font-size: 1.2rem;
    color: var(--auth-black);
    padding: 0;
    margin: 0;
}

.otp-timmer-wrapper button {
    color: #a3a3a3;
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
}

.auth-right-section {
    width: 50%;
    background: linear-gradient(
        to bottom,
        var(--auth-gradient-start),
        var(--auth-gradient-end)
    );
    min-height: 100vh;
}
.auth-right-container {
    width: 100%;
    background-image: url(../../images/auth-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 15%;
    padding-bottom: 10%;
    box-sizing: border-box;
}

.auth-right-img-wrapper {
    position: absolute;
    min-width: 400px;
    width: 100%;
    max-width: 500px;
    height: 55%;
    object-fit: cover;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.auth-right-img-wrapper img {
    width: 100%;
    height: 100%;
}

.auth-right-content {
    background: #ffffff4d;
    width: 100%;
    max-width: 70%;
    border-radius: 40px;
    padding: 1.5rem;
}

.auth-right-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    max-width: 420px;
}
.auth-right-content h1 span {
    display: block;
    font-size: 2rem;
}

@media (max-width:1100px) {
    .auth-left-section {
        width: 100%;
    }
    .auth-right-section {
        display: none;
    }
}
@media (max-width: 576px) {
    .auth-left-section {
        padding: 4rem 1rem 1rem 1rem;
    }
    .auth-form-header h1 {
        font-size: 1.5rem;
    }
    .auth-form-header p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1500px) {
    .auth-right-content {
        padding: 3rem;
    }
    .auth-left-section {
        padding: 5rem 4rem 2rem 4rem;
    }
}
