@charset "utf-8";
/* CSS Document */


    body {
      font-family: Arial, sans-serif;
      background: #f4f7f8;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }

    .form-container {
      background: #fff;
      padding: 15px 30px; /*  25px 30px */
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      width: 380px;
    }

    .form-container h2 {
      margin-bottom: 10px; /* 20px */
      color: #333;
      text-align: center;
    }

.form-container #contactForm{
	width: 95%;
	float: none;
	margin: 0 auto;
	text-align: center;
}
    .input-group {
      position: relative;
      margin-bottom: 15px;
    }

    .input-group i {
      position: absolute;
      top: 50%;
      left: 10px;
      transform: translateY(-50%);
      color: #4a90e2;
      font-size: 16px;
    }

    input {
      width: 90%;
      padding: 10px 10px 10px 35px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

 select {
      width: 100%;
      padding: 10px 10px 10px 35px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    input:focus, select:focus {
      outline: none;
      border-color: #4a90e2;
      box-shadow: 0 0 5px rgba(74,144,226,0.5);
}

#otroCurso{
	  width: 90%;
      padding: 10px 10px 10px 35px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;	
    }

    button {
      width: 100%;
      padding: 12px;
      background: #4a90e2;
      color: #fff;
      border: none;
      cursor: pointer;
      font-weight: bold;
      border-radius: 8px;
      transition: background 0.3s;
      font-size: 16px;
    }

    button:hover {
      background: #357abd;
    }

    #otroCursoDiv {
      display: none;
    }
 