:root {

    --bg-primary: #f5f5f5;
    --bg-card: #ffffff;

    --border-color: #e8e8e8;

    --text-primary: #111111;
    --text-secondary: #666666;

    --green-primary: #00c853;

    --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
}

/* RESET */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}

/* BODY */

body {

    font-family: Arial, sans-serif;

    background-color: var(--bg-primary);

    min-height: 100vh;
}

/* PAGE */

.cadastro-page {

    min-height: 100vh;

    display: grid;

    grid-template-columns: 1fr 500px;
}

/* LADO ESQUERDO */

.cadastro-info {

    background: linear-gradient(135deg, #111111 0%, #1d1d1d 100%);

    color: white;

    padding: 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

/* LOGO */

.logo-link {

    font-size: 2.5rem;

    font-weight: bold;

    color: var(--green-primary);

    text-decoration: none;

    margin-bottom: 25px;
}

/* BADGE */

.mini-badge {

    display: inline-block;

    width: fit-content;

    background-color: rgba(255,255,255,0.08);

    padding: 10px 18px;

    border-radius: 999px;

    font-size: 14px;

    margin-bottom: 30px;
}

/* TEXTOS */

.cadastro-info h1 {

    font-size: 3rem;

    line-height: 1.2;

    margin-bottom: 25px;
}

.cadastro-info p {

    color: #cccccc;

    font-size: 1.1rem;

    line-height: 1.8;

    max-width: 550px;
}

/* CARD */

.cadastro-card {

    background-color: var(--bg-card);

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px;

    border-left: 1px solid var(--border-color);
}

/* TITULO */

.cadastro-card h2 {

    font-size: 2rem;

    margin-bottom: 35px;

    color: var(--text-primary);
}

/* FORM */

form {

    display: flex;

    flex-direction: column;

    gap: 20px;
}

/* GROUP */

.form-group {

    display: flex;

    flex-direction: column;
}

/* LABEL */

label {

    margin-bottom: 8px;

    color: var(--text-secondary);

    font-size: 14px;

    font-weight: 600;
}

/* INPUT */

input {

    height: 52px;

    border: 1px solid var(--border-color);

    border-radius: 14px;

    padding: 0 16px;

    font-size: 15px;

    outline: none;

    transition: 0.2s;
}

input:focus {

    border-color: var(--green-primary);

    box-shadow: 0 0 0 3px rgba(0,200,83,0.1);
}

/* BOTÃO */

.btn-cadastro {

    margin-top: 10px;

    height: 58px;

    border: none;

    border-radius: 16px;

    background-color: var(--green-primary);

    color: #111111;

    font-size: 1rem;

    font-weight: bold;

    cursor: pointer;

    transition: 0.25s;
}

.btn-cadastro:hover {

    transform: translateY(-2px);

    opacity: 0.92;
}

/* LOGIN */

.login-link {

    margin-top: 30px;

    text-align: center;

    color: var(--text-secondary);
}

.login-link a {

    color: var(--green-primary);

    text-decoration: none;

    font-weight: bold;
}

/* ERROS */

.error-msg {

    list-style: none;

    margin-top: 6px;

    color: red;

    font-size: 13px;
}

/* RESPONSIVO */

@media (max-width: 1000px) {

    .cadastro-page {

        grid-template-columns: 1fr;
    }

    .cadastro-info {

        display: none;
    }

    .cadastro-card {

        min-height: 100vh;

        padding: 40px 25px;

        border-left: none;
    }
}

@media (max-width: 600px) {

    .cadastro-card h2 {

        font-size: 1.7rem;
    }
}