.td{
  text-decoration: none;
}
.tc{
  color: #0f172a;
}
:root {
  --blue: #3b82f6;
  --muted: #6b7280;
  --bg: #f8fafc;
  --white: #ffffff;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: #0f172a;
}

/* LAYOUT */
.container {
  display: flex;
  min-height: 100vh;
}

/* LEFT PANEL */
.left {
  flex: 1;
  background: linear-gradient(90deg, #3b82f6, #5aa0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.mockup {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* RIGHT PANEL */
.right {
  width: 450px;
  background: var(--white);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-box {
  width: 100%;
}

/* BRANDING */
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.logo {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e8f0ff;
  color: var(--blue);
  font-weight: 700;
  font-size: 20px;
}

.lead {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* FORM */
label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

input {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  margin-top: 5px;
  border: 1px solid #d8dde6;
  border-radius: 6px;
}

.forgot {
  text-align: right;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  font-size: 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.divider {
  text-align: center;
  margin: 20px 0;
  font-size: 13px;
  color: var(--muted);
}

.ms-btn {
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #d8dde6;
  background: white;
  border-radius: 8px;
  cursor: pointer;
}

.ms-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #f35325 50%, #0078d4 50%);
}

.help {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

.small-note {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #a0a9b5;
}

/* ------------ RESPONSIVE BREAKPOINTS ------------ */

/* Tablet */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .left {
    order: 2;
    padding: 20px;
  }

  .right {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 40px 25px;
  }
}

/* Mobile */
@media (max-width: 550px) {
  .mockup {
    padding: 15px;
  }

  .right {
    padding: 30px 20px;
  }

  .logo {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  h1 {
    font-size: 18px;
  }

  input,
  .btn {
    padding: 12px;
    font-size: 15px;
  }


/* Round logo styling */
.logo-round {
  width: 80px;
  height: 80px;
  border-radius: 50% !important;
  padding: 1rem;
  background: #ffffff;
  border: 2px solid #e0e6f0;
  object-fit: cover;
  display: block;
}

/* Responsive Logo Fixes */
@media (max-width: 768px) {
  .brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }

  .logo-round {
    width: 70px;
    height: 70px;
    padding: 0.6rem;
  }

  h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .lead {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo-round {
    width: 60px;
    height: 60px;
    padding: 0.5rem;
  }

  h1 {
    font-size: 20px;
  }
}
