* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0c2b4a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.container {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.logo {
  width: 80px;
  margin-bottom: 20px;
}

h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

p {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 10px 0;
}

.checkbox-container input {
  margin-right: 8px;
}

.styled-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 15px;
}

button[type="submit"] {
  width: 100%;
  background: #1e88e5;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button[type="submit"]:hover {
  background: #0c2b4a;
}

.divider {
  margin: 20px 0;
  font-size: 14px;
  color: #999;
}

.me-1 {
  margin-right: 0.3125rem !important;
}

/* Top right branching */
.top-right-branding {
  position: absolute;
  top: 20px;
  right: 30px;
  text-align: right;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  z-index: 10; /* ensures it's above the form */
}

.top-right-branding .idep-logo {
  font-size: 20px;
  font-weight: 700;
}

.top-right-branding .gold {
  color: #fbc02d;
}

.top-right-branding .idep-subtitle {
  font-size: 13px;
  font-weight: 400;
}


/* Footer Styles */
.footer {
  background-color: #ffffff;
  color: #000;
  padding: 12px 20px;
  text-align: center;
}

.footer .logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer img {
  height: 50px;
}

@media (max-width: 768px) {
  .footer .logos {
    flex-direction: column;
  }
}
