body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fff;
    color: #333;
}
/* Favicon */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}
.landing-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.landing-logo span { color: var(--dark); }

.logo-img{
  height:40px;
  width:auto;
  display: block;
  
}
.register-container {
    display: flex;
    min-height: 100vh;
}
/*------------------------------------------------*/
/* Lado Esquerdo - Imagem */
.register-image {
    flex: 1;
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/registro-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
}

.register-image h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.register-image h1 span {
    color: #ff5a1f;
}

/* Lado Direito - Formulário */
.register-form-section {
    width: 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.register-header p {
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #8ccf48;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
    font-size: 0.85rem;
    color: #666;
}

.checkbox-group input {
    margin-top: 3px;
}

.checkbox-group a {
    color: #333;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #8ccf48;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #648c3c;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.login-link a {
    color: #8ccf48;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 900px) {
    .register-image {
        display: none;
    }
    
    .register-form-section {
        width: 100%;
        padding: 30px 20px;
    }
}
