
html, body{
    height: 100%;
    margin: 0;
}

body{
    display: flex;
    flex-direction: column;
    background: #fff;
}

main{
    flex: 1;
}


.criar-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    min-height: calc(100vh - 180px);
    background-color: #fff;
}


.criar-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.criar-container h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}


.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.form-group input:focus{
    outline: none;
    border-color: #000;
}

/* ==== botão ==== */
.form-actions {
    margin-top: 30px;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #000;
}

.btn-primary {
    background-color: #000;
    color: #fff;
}
.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}
/* Botão do Google */
.btn-google {
    background-color: #DB4437; /* Vermelho Google */
    color: #ffffff;
    border: 1px solid #DB4437;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-google:hover {
    background-color: #c53929;
    border-color: #c53929;
}

.btn-google i {
    font-size: 16px;
}

.divisor {
    text-align: center;
    margin: 15px 0;
    color: #666;
    font-size: 12px;
    position: relative;
}