body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #928686 0%, #544f58 100%);
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    text-align: center;
    color: #6d3e2f;
    margin-top: 40px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.form-container {
    background-color: #fff;
    padding: 32px 32px 24px 32px;
    border-radius: 12px;
    max-width: 400px;
    margin: 40px auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.conteiner-receitas {
    max-width: 800px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 32px 24px;
}

.receita-card {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.receita-card img {
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.receita-info {
    flex: 1;
}

.receita-titulo {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #6d3e2f;
}

.receita-passos {
    margin: 0;
    padding-left: 18px;
}

.receita-passos li {
    margin-bottom: 6px;
    font-size: 1em;
    line-height: 1.5;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    gap: 10px;
}

.form-group label {
    min-width: 80px;
    font-weight: 500;
    color: #6d3e2f;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    flex: 1;
    padding: 10px 12px;
    border: 1.5px solid #d1bfa7;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f6f2;
    transition: border 0.2s;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    border: 1.5px solid #a67c52;
    outline: none;
    background: #fff;
}

#submitBtn {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #a67c52 0%, #544f58  100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(166,124,82,0.08);
    transition: background 0.2s, transform 0.1s;
    margin-top: 10px;
}

#submitBtn:hover {
    background: linear-gradient(90deg, #6d3e2f 0%, #a67c52 100%);
    transform: translateY(-2px) scale(1.03);
}

.btn-sair {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 24px;
    transition: background 0.2s;
}

.btn-sair:hover {
    background: #e74c3c;
}