@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

body {
  background: #F5F7FA;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 15px;
}
.acerto{
  color: green;
}
.erro{
  color: red;
}
.menuLateral{
  width: 300px;
  background-color: #333;
}

.container-left{
  width: 100%;
  max-width: 600px;
  text-align: center;
  border-radius: 12px 0px 0px 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  margin-bottom: 40px;
  float: left;
  background-color: #4A90E2;
}
.container-left h1{
  font-family: "Exo", sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #ffffff;
}
.container-left p{
  font-family: "Exo", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #f4f4f4;
}
.container-left-center{
  margin: 0 auto;
  width: 70%;
  color: #ffffff;
  margin-top: 18%;
  margin-bottom: 17.5%;
}
.container-right{
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  padding: 20px 40px;
  border-radius: 0px 12px 12px 0px;
  margin-bottom: 40px;
  float: right;
}
.container-right h2{
  color: #333;
  font-size: 30px;
}
.box-Form-container-right{
margin: 0 auto;
  width: 70%;
  text-align: center;
  color: #ffffff;
  margin-top: 8%;
  margin-bottom: 15.5%;
}
.container {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  margin-bottom: 40px;
  float: right;
}

.title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  color: #1a1a1a;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
  border-bottom: 2px solid #2980b9;
  padding-bottom: 8px;
}

.form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #34495e;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form select,
.form input[type="file"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1.8px solid #bdc3c7;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
  background: #fafafa;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="password"]:focus,
.form select:focus,
.form input[type="file"]:focus {
  outline: none;
  border-color: #2980b9;
  background: #fff;
  box-shadow: 0 0 8px rgba(41, 128, 185, 0.25);
}

.button {
  width: 100%;
  padding: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  background: #2980b9;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  background: #1c5980;
  box-shadow: 0 7px 20px rgba(28, 89, 128, 0.6);
}

.buttonA {
  width: 100%;
  padding: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  border: 1px solid #f4f4f4;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.buttonA:hover {
  border: 1px solid #1c5980;
  background: #1c5980;
  box-shadow: 0 7px 20px rgba(28, 89, 128, 0.6);
}

.button-A-especial:hover {
  background: #333;
  box-shadow: 0 7px 20px rgba(28, 89, 128, 0.6);
}

.button-A-especial {
  width: 100%;
  padding: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  background: #1c5980;
  color: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.link {
  display: inline-block;
  margin-top: 15px;
  text-align: center;
  color: #2980b9;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link:hover {
  color: #1c5980;
  text-decoration: underline;
}

.login-container {
  max-width: 400px;
  background: white;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin: 50px auto 60px auto;
}

.error {
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.profile-img {
  display: block;
  max-width: 160px;
  width: 100%;
  border-radius: 100%;
  margin: 15px auto 25px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

.work-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: block;
}

@media (max-width: 480px) {
  .container {
    padding: 25px 20px;
  }
  .title {
    font-size: 1.8rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .login-container {
    padding: 30px 20px;
  }
}
