:root {
    --font-primary: "Exo 2";
    --color-text: #f3f3f3;
    --color-secondary: #d0d0d0;
    --color-accent: #01d7fe;
    --color-accent-hover: #04a5bc;
    --background-color: #000a38;
}

.container {
    margin: 0 auto;
    /* background-color: var(--background-color); */
    width: 90%;
    /* max-width: 1140px; */
    height: 100%;
}

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

body,
html {
    height: 100%;
    color: var(--color-text);
    font-family: var(--font-primary);
}

/* background  */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.background-container section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.676);
}

.background-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: -2;
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

.background-container img.active {
    opacity: 1;
}
/* background  */

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

/* left side  */
.wrapper-left {
    /* background-color: rgba(127, 255, 212, 0.232); */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    gap: 4%;
}

.wrapper-left > img {
    width: 50%;
}

.offer_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* background-color: var(--color-accent-hover); */
    padding: 0 30px;
    font-size: 21px;
}
.offer_list > li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.offer_list > li > img {
    width: 28px;
}
.line {
    width: 100%;
    /* background-color: #ffffff33; */
}

h2 {
    width: 100%;
}
.logo_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.logo_wrapper > div {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 40px;
    width: 100%;
    /* background-color: khaki; */
}
.logo_wrapper > div > img {
    height: 80px;
}
/* right side */
.wrapper-right {
    /* background-color: rgba(255, 0, 0, 0.334); */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3%;
}

h1 {
    /* background-color: rebeccapurple; */
    font-weight: 400;
    text-align: center;
}

.login_wrapper {
    /* background-color: rgba(0, 255, 195, 0.334); */
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sign_in_text {
    width: 100%;
    font-size: large;
}
.get_started {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2px;
    margin-top: 12px;
    margin-bottom: 32px;
}
.get_started > span {
    font-size: small;
    font-weight: 300;
}
.get_started > span:nth-of-type(1) {
    color: var(--color-secondary);
}
.get_started > span:nth-of-type(2),
.get_started > span:nth-of-type(2) > a {
    color: var(--color-accent);
}
.get_started > span:nth-of-type(2) > a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}
.input_wrapper {
    width: 100%;
    border: 1px solid #f2f2f290;
    height: 55px;
    border-radius: 11px;
    position: relative;
    transition: 0.2s;
}
.input_wrapper:hover {
    border: 1px solid var(--color-accent-hover);
}

.password-input {
    padding-right: 60px;
}

/* passowrd eye start */

.input_wrapper > img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}
/* passowrd eye end  */
.input_wrapper > input {
    width: 100%;
    height: 100%;
    border-radius: 11px;
    border: none;
    background-color: transparent;
    padding: 0 20px;
    color: white;
    outline: none;
    font-size: 17px;
}

.input_wrapper > .label {
    position: absolute;
    top: -19px;
    left: 14px;
    font-size: 13px;
}

.forgot {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 10px;
}
.forgot_link {
    text-align: right;
    color: var(--color-text);
    transition: 0.2s;
    display: inline-block;
}
.forgot_link:hover {
    cursor: pointer;
    text-decoration: underline;
    color: var(--color-accent);
}
.submit {
    margin-top: 25px;
    width: 100%;
    height: 55px;
    border-radius: 11px;
    cursor: pointer;
    transition: 0.2s;
    color: var(--background-color);
    font-size: 17px;
    font-weight: 600;
    background-color: var(--color-accent-hover);
    border: 0;
}
.submit:hover {
    background-color: var(--color-accent);
    color: rgb(0, 0, 0);
}
