/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  height: 100%;
}



.login-container {
  display: flex;
  min-height: 100vh;
    position: fixed;
  inset: 0;
  width: 100vw;
}


/* LEFT SIDE IMAGE */
.login-left {
    width: 100%;
  flex: 2;
  overflow: hidden;
}

.login-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT LOGIN FORM */
.login-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 40px;
    width: 100%;
}

/* Logo */
.login-right .logo {
  width: 250px;
  margin-bottom: 30px;
}

/* Form styling */
.login-right form {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

.login-right input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-right button {
  padding: 10px;
  background-color: #0078d7;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.login-right button:hover {
  background-color: #005ea6;
}

/* Roblox login link */
.login-right .roblox-login {
  display: block;
  margin-top: 20px;
  text-align: center;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.login-right .roblox-login:hover {
  text-decoration: underline;
}
