
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #2c3e50, #2c3e50);
  
  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}


form {
  width: 100%;
}

form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}

form input:focus {
  border-color: #74ebd5;
  outline: none;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #2c3e50;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 15px;
}

form button:hover {
  background-color: #57cfc3;
}

form p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

form a {
  color: #57cfc3;
  text-decoration: none;
}


.dashboard-container {
  background: linear-gradient(to right, #2c3e50, #2c3e50);
 
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-card {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 450px;
  text-align: center;
}

.dashboard-card h2 {
  color: #333;
  margin-bottom: 10px;
}

.dashboard-card .email {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dashboard-menu a {
  text-decoration: none;
  color: #57cfc3;
  padding: 10px;
  border: 1px solid #2c3e50;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dashboard-menu a:hover {
  background-color: #2c3e50;
  color: white;
}

.dashboard-menu .logout {
  border-color: #f87171;
  color: #f87171;
}

.dashboard-menu .logout:hover {
  background-color: #f87171;
  color: white;
}


.job-search {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.job-search input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 200px;
  transition: border-color 0.3s;
}

.job-search input:focus {
  border-color: #74ebd5;
  outline: none;
}

.job-search button {
  padding: 10px 20px;
  background-color: #2c3e50;
  border: none;
  color: white;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.job-search button:hover {
  background-color: #57cfc3;
}

/* Profile Form Styles */
.profile-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
  font-size: 14px;
}

.profile-form textarea {
  min-height: 100px;
  resize: vertical;
}

.profile-form input:focus,
.profile-form textarea:focus {
  border-color: #74ebd5;
  outline: none;
}

.profile-form button {
  width: 100%;
  padding: 12px;
  background-color: #2c3e50;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 15px;
}

.profile-form button:hover {
  background-color: #57cfc3;
}

.profile-form p {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.profile-form a {
  color: #57cfc3;
  text-decoration: none;
}


.profile-form .file-label {
  display: block;
  margin-top: 15px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.profile-form input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.3s;
}

.profile-form input[type="file"]:focus {
  border-color: #2c3e50;
  outline: none;
}



.container {
  width: 100%;
  max-width: 500px; 
  padding: 20px;
  margin: 0 auto; 
  max-height: 90vh; 
  overflow-y: auto; 
}


.profile-form input,
.profile-form textarea,
.profile-form button {
  width: 100%; 
}


@media (max-width: 600px) {
  .container {
    padding: 20px 15px;
    max-height: 85vh; 
  }

  .profile-form input,
  .profile-form textarea {
    font-size: 14px; 
  }
}


.profile-form input[type="file"] {
  width: 100%; 
}


.profile-form input,
.profile-form textarea,
.profile-form button {
  margin-bottom: 15px; 
}


.profile-form select {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
}

.profile-form select:focus {
  border-color: #74ebd5;
  outline: none;
}


#location-search {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}

#location-search:focus {
  border-color: #2c3e50;
  outline: none;
}


#location {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  display: none;
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.container {
  width: 50%;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  font-size: 24px;
  color: #333;
}

/* Form Styles */
.signup-form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 16px;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #5cc8ad;
}




