.register-hero {
    position: relative;
    min-height: calc(100vh - 110px);
    background-image: url("../imagens/background_main.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 20px 90px;
    overflow: hidden;
}

.register-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(7, 24, 44, 0.82), rgba(7, 24, 44, 0.72));
}

.register-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.register-intro {
    color: #ffffff;
    padding: 40px 10px 20px 10px;
}

.register-intro h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
}

.register-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin-bottom: 28px;
}

.info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 26px;
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
    max-width: 560px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.info-card p {
    margin: 0 0 18px 0;
    font-size: 16px;
    line-height: 1.75;
}

.info-card a.back-login-btn,
.info-card a.back-login-btn:link,
.info-card a.back-login-btn:visited {
    display: inline-block !important;
    margin-top: 12px !important;
    padding: 14px 24px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
}

.info-card a.back-login-btn:hover,
.info-card a.back-login-btn:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.register-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(7, 24, 44, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-header {
    margin-bottom: 26px;
}

.form-header h2 {
    font-size: 32px;
    color: #0a2340;
    line-height: 1.25;
}

.form-message {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.form-message.sucesso {
    background: #eaf8ef;
    color: #1d6b3b;
    border: 1px solid #bfe3ca;
}

.form-message.erro {
    background: #fff1f0;
    color: #b42318;
    border: 1px solid #f3c6c2;
}

.register-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: #0a2340;
    font-size: 14px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    height: 52px;
    border: 1px solid #d7e2ee;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 15px;
    color: #0a2340;
    background: #fbfdff;
    transition: all 0.25s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0b4da2;
    box-shadow: 0 0 0 4px rgba(11, 77, 162, 0.12);
    background: #ffffff;
}

.submit-btn {
    width: 100%;
    margin-top: 24px;
    border: none;
    border-radius: 10px;
    background: #00B4D8;
    color: #ffffff;
    height: 56px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #0096c7;
    transform: translateY(-2px);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .register-wrapper {
        grid-template-columns: 1fr;
    }

    .register-intro {
        padding: 20px 0 0;
    }
}

@media (max-width: 768px) {
    .register-intro h1 {
        font-size: 36px;
    }

    .register-card {
        padding: 26px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}