/* Reset and Background Setup */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url("Background.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Page Wrapper Flex Layout */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main Content Centered */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Main Login/Profile Container */
.container {
  max-width: 600px;
  margin-top: 150px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #333;
}

/* Form Fields */
input, button {
  padding: 12px;
  margin: 8px 0;
  width: 80%;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
button {
  background: #ff5722;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #e64a19;
}

/* Profile Image */
.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin: 10px auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.options label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  cursor: pointer;
}

.options input[type="radio"] {
  margin-right: 10px;
}
/* Resume & Friend's Site Buttons */
.resume-btn {
  display: inline-block;
  background-color: #1976d2;
  color: white;
  padding: 10px 20px;
  margin: 10px 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.resume-btn:hover {
  background-color: #1565c0;
}

/* Footer Always at Bottom */
footer {
  background: #f9f9f9;
  padding: 15px;
  border-top: 1px solid #ccc;
  font-size: 14px;
  color: #555;
  text-align: center;
  width: 100%;
}

footer a {
  color: #333;
  text-decoration: underline;
}

/* Hidden Utility Class */
.hidden {
  display: none;
}
