/* CSS Document */
@charset "UTF-8";

@font-face {
  font-family: 'Vazir';
  src: url('../fonts/Vazir.eot');
  src: local('../fonts/Vazir'), url('../fonts/Vazir.woff') format('woff'), url('../fonts/Vazir.ttf') format('truetype');
}

/* Base Styles */
html,body{
  background-image: url('../pics/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  font-family: 'Vazir';
  text-align: right;
  margin: 0;
  padding: 0;
  overflow:hidden !important;
}
body {
    margin: 0;
    min-height: 100vh;
    transition: background-image 0.5s ease-in-out;
}
.container{
  height: 100%;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

/* Form Container for Transitions */
.form-container {
  position: relative;
  width: 400px;
  min-height: 600px;
  overflow: visible; /* Changed from hidden to visible for social icons */
  margin: 45px 0; /* Add margin for social icons space */
      place-self: center;
}

/* Card Base Styles */
.card{
  height: 370px;
  margin-top: auto;
  margin-bottom: auto;
  width: 400px;
  background-color: rgba(0,0,0,0.5) !important;
  position: relative; /* Added for social icons positioning */
}

/* Animation Classes */
.form-card {
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateX(100%);
    visibility: hidden;
    height: 450px;
}

.form-card.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.form-card.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

.form-card.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
}

/* Social Icons - FIXED POSITIONING */
.social_icon {
  position: absolute;
  left: 20px;
  top: -45px; /* Position above the form container */
  z-index: 10; /* Ensure icons are above everything */
}

.social_icon span{
  font-size: 60px;
  margin-right: 10px;
  color: #FFC312;
}

.social_icon span:hover{
  color: white;
  cursor: pointer;
}

.card-header {
  position: relative; /* For social icons positioning context */
  padding-top: 10px; /* Add some padding at top */
}

.card-header h3{
  color: white;
  margin: 0;
  padding: 0;
}

/* Form Inputs */
.input-group-prepend span{
  width: 50px;
  background-color: #FFC312;
  color: black;
  border:0 !important;
}

input:focus{
  outline: 0 0 0 0  !important;
  box-shadow: 0 0 0 0 !important;
}

.remember{
  color: white;
}

.remember input
{
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-left: 5px;
}

/* Buttons */
.login_btn{
  color: black;
  background-color: #FFC312;
  width: 100px;
  margin-top: 10px;
}

.login_btn:hover{
  color: black;
  background-color: white;
}

/* Links */
.links{
  color: white;
}

.links a {
  margin-right: 4px;
  cursor: pointer;
  color: #FFC312;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
  color: white;
}

/* Input Specific Styles */
#txt-password, #txt-username {
  border-radius: 5px 0 0 5px;
}

.input-icon {
  border-radius: 0;
}

/* Additional Styling for Register Form */
.form-group {
  margin-bottom: 15px;
}

/* Fix for form cards to be properly centered */
.d-flex.justify-content-center.h-100 {
  width: 100%;
}
.iranfilmportgraysvg {
    width: 100px;
    filter: brightness(0) saturate(100%) invert(93%) sepia(60%) saturate(6584%) hue-rotate(337deg) brightness(98%) contrast(104%);
}
.form-control{
    border-radius:0px;
}
.form-control.en{
    direction:ltr !important;
    text-align:left !important;
}
    .form-control.letterWithSpace {
        letter-spacing:5px;
        font-weight:bold;
        font-size:20px;
    }
    input{
        font-size: 20px !important;
    }
/*button loading*/
.waitMe_progress.pulse {
    transform: unset !important;
}
.specialLogin{
    width:100% !important;
    background-color:forestgreen;
    color:white;
}