* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "iransans", sans-serif;
}

a {
    text-decoration: none;
}

body {
    font-family: "iransans", sans-serif;
    height: 100vh;
    width: 100%;
    background: #dce0e6;
    padding: 20px;
}

.body-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    background: #f6f6f6;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    padding: 30px 100px;
    overflow: hidden;
    position: relative;
}


.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 200px;
}

.login-logo {
    text-align: center;
    width: 100%;
}

.login-logo-text h1 {
    color: var(--red-1);
    font-family: 'Tillana', system-ui;
}

.contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
}

.contents img {
    width: 230px;
}

.input-field {
    position: relative;
    /* margin-top: 15px; */
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
}

.input-field input {
    width: 100%;
    height: 38px;
    border-radius: 6px;
    font-size: 18px;
    padding: 0 15px;
    border: none;
    background: transparent;
    color: #000;
    outline: none;
}

.input-field label {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #a1a3a7;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

input:focus {
    border: 2px solid var(--red-1);
}

input:focus~label,
input:valid~label {
    top: -5px;
    right: 15px;
    font-size: 14px;
    padding: 2px 6px;
    background: #f6f6f6;
}

.login {
    font-size: 12px;
    text-decoration: underline;
    color: var(--red-1);
}

.bottom-right-img {
    position: absolute;
    width: 90px;
    height: auto;
    bottom: -14px;
    right: 0;
    overflow: hidden;
}

.bottom-right-img img {
    width: 100%;
}

.bottom-left-img {
    position: absolute;
    width: 90px;
    height: auto;
    bottom: -25px;
    left: 0;
    overflow: hidden;
}

.bottom-left-img img {
    width: 100%;
}

.top-right-img {
    position: absolute;
    width: 140px;
    height: auto;
    top: -35px;
    right: -35px;
    overflow: hidden;
}

.top-right-img img {
    width: 100%;
}


.forgot-password-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid #dce0e6;
    padding: 18px 26px;
    border-radius: 15px;
}

.forgot-password-form p {
    color: #838383;
    font-size: 13px;
    margin-bottom: 20px;
}



.forgot-password-form button {
    background-color: var(--red-1);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 8px 20px;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s all ease-in-out;
}

.forgot-password-form button:hover {
    background-color: var(--red-2);
    color: #fff;
}