
* {
    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: column;
    justify-content: flex-start;
    align-items: center;
    /* background: url("../images/login/bg-vector.png") var(--red-1); */
    background: #f6f6f6;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    padding: 15px 100px;
    overflow: hidden;
    position: relative;
}


.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.login-logo {
    text-align: center;
}

.login-logo-text h1 {
    color: var(--red-1);
    font-family: 'Tillana', system-ui;
}

.contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.left-side {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.left-side img {
    width: 80%;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* background-color: #dce0e6; */
    border: 1px solid #dce0e6;
    padding: 20px 20px 0 40px;
    border-radius: 15px;
}

.login-form p {
    color: #838383;
    font-size: 14px;
    /*margin-bottom: 20px;*/
    margin-bottom: 0px;
}

.input-field {
    position: relative;
    /* margin-top: 15px; */
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
}

.input-field input {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    font-size: 18px;
    padding: 0 15px;
    /* border: 2px solid #dce0e6; */
    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);
    /* background-color: #f6f6f6; */
}

input:focus~label,
input:valid~label {
    top: -5px;
    right: 15px;
    font-size: 14px;
    padding: 2px 6px;
    background: #f6f6f6;
}

.login-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;
}

.login-form button:hover {
    background-color: var(--red-2);
    color: #fff;
}

.forgot-password {
    font-size: 12px;
    text-decoration: underline;
    color: var(--red-1);
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-media a {
    color: #000;
    font-size: 30px;
    transition: 0.3s all ease-in-out;
}

.social-media a:hover {
    color: var(--red-1);
    transform: translateY(-4px);
}

.social-media h6 {
    width: 100%;
    text-align: center;
}

.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%;
}

.w200{
    width:200px !important
}
.w120{
    width:120px !important
}

.listnone{
    list-style:none !important
}

.wi20{
    width:20px !important
}

.he20 {
    height: 20px !important
}

.disinline{
    display:inline-block !important
}

.fs12{
    font-size:12px !important;
}

.right-side .input-field:nth-child(3) {
  background-color: transparent !important;
}
