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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
    position: relative;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("Assets/sign_in_page.svg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Fixed, consistent card size */
.signin-container {
  width: 540px;          /* fixed width so both pages match */
  min-height: 366px;     /* consistent visual height */
  background: #fff;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  margin: 0 auto;
}

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

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

p {
  margin-bottom: 16px;
  color: #333;
}

/* Make text & password fields identical */
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  margin-bottom: 15px;
  border: 0.5px solid #ccc;
  border-bottom: 1px solid #333;
  border-radius: 4px;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #0078d4;
  outline: none;
}

.link {
  color: #0067b8;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.link:hover {
  text-decoration: underline;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  font-size: 16px;
  background-color: #0067b8;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #005ba1;
}

.create-account {
  margin-top: 30px;
  font-size: 14px;
  color: #333;
}

footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

footer .link {
    color: #333;
    margin: 0 10px;
    margin-bottom: 10px;
    font-size: 11px;
}

footer .para {
    color: #333;
    margin: 0 10px;
    margin-bottom: 10px;
    font-size: 10px;
}
