/*!
 * Template Name: Hostina Template
 * Author: hostk.com
 * Version: 1.0
 * Description: Modern Responsive Bootstrap Hosting Template
 * Created: 2025
 */
 
#login-section .content {
  height: 100vh;
}

/* Left Section - Hosting Website Mockup */
#login-section .left-section {
  background-color: var(--color-primary);
  border-top-right-radius: var(--radius-28);
  border-bottom-right-radius: var(--radius-28);
  height: 100%;
  overflow: hidden;
}

/* Right Section - Login Form */
#login-section .right-section {
  background: #ffffff;
  padding: 100px 40px;
  height: 100%;
}

.login-container {
  width: 100%;
  max-width: 400px;
}

.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.welcome-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.welcome-subtitle {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
}

.form-options {
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
}

.forgot-password {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .login-section .content {
    flex-direction: column;
  }

  .left-section {
    height: 50vh;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .right-section {
    height: 50vh;
  }
}

@media (max-width: 767px) {
  .welcome-title {
    font-size: 28px;
  }
}

@media (max-width: 479px) {
  .login-container {
    max-width: 100%;
  }

  .signin-btn {
    padding: 14px;
    font-size: 14px;
  }

  .welcome-title {
    font-size: 24px;
  }
}
