:root {
	--title: #006e42;
    --btncolor: #008952;	
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #e00b32 0px, #c5072a 75px, #f4f7f6 57px, #f4f7f6 100%);
    min-height: 100vh;
    margin: 0;
    color: #333;
}
.container {
    background-color: #ffffff;
    padding: 30px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
    margin: 50px;
}
h2 {
    text-align: center;
    color: var(--title);
    margin: 25px;
    font-size: 2em;
    font-weight: 600;
    font-family: Poppins;
}
.form-section {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 25px;
    margin-bottom: 25px;
}
.form-conteiner {
    display: flex;
}
.form-left {
    width: 50%;
    margin: 0px 50px 0px 0px;
}
.form-right {
    width: 50%;
}
.form-section h3 {
    color: var(--title);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.4em;
    border-bottom: 2px solid var(--title);
    padding-bottom: 10px;
    font-family: Poppins;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-family: Roboto;
}
.form-group input {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input[type="file"] {
    padding: 10px;
}
.form-group input:focus {
    border-color: var(--title);
    box-shadow: 0 0 0 0.1rem #008952;
    outline: none;
}
button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--btncolor);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
    background-color: var(--btncolor);
    transform: translateY(-2px);
}
button:active {
    background-color: var(--btncolor);
    transform: translateY(0);
}
#position {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.imag-inicio {
	display: flex;
    justify-content: center;
}
.imag-inicio img {
	width: 15%;
    min-width: 100px;
	align-content: center;
}

.vacantes-cerradas {
    text-align: center;
    border: 2px solid var(--title); 
    border-radius: 6px;
    padding: 10px 15px;
    margin: 20px 0;
    background-color: transparent; 
    font-family: Roboto;
}
.vacantes-cerradas h4 {
    margin: 0;
    color: var(--title); 
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.solicitud-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px; 
}

.custom-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: var(--fontMain);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.3s ease;
  transform: translateY(20px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.custom-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.custom-toast.success {
  background-color: #d4edda;         
  border: 1px solid var(--btncolor); 
  color: var(--btncolor);
}

.custom-toast.error {
  background-color: #f8d7da;        
  border: 1px solid var(--colorAccent); 
  color: var(--colorAccent);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 30px 20px;
    }
    .form-conteiner {
        display: block;
    }
}
@media (max-width: 800px) {
    h2 {
        font-size: 1.8em;
    }
    .form-section {
        padding: 20px;
    }
    .form-group input {
        padding: 10px;
    }
    button[type="submit"] {
        font-size: 1em;
        padding: 12px;
    }
     .form-left {
        width: 100%;
    }
    .form-right {
        width: 100%;
    }
}