@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*background-image: url("../prints/Aesthetic Lo-fi Desktop wallpaper.jpeg");*/
    background-image: linear-gradient(#e2b728, #000); /* Mistura manual entre #333 e branco */
    /*background-repeat: no-repeat;
    background-size: cover ;*/
    font-family: "Cal Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form {
    width: 100%;
    max-width: 400px;
}

.card {
    box-shadow: 2px 2px 10px #887171;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.card-top {
    margin-bottom: 20px;
}

.logo-svg {
    width: 60px;
    height: 60px;
    fill: #887171;
    display: block;
    margin: 0 auto 10px;
}

.card-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-group label {
    color: #887171;
    font-size: 14px;
    margin-bottom: 5px;
}

.card-group input {
    border-radius: 5px;
    outline: none;
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid #887171;
    font-size: 16px;
}

.card-group button {
    background-color: brown;
    width: 100%;
    border-radius: 30px;
    padding: 15px;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.card-group button:hover {
    background-color: darkred;
}

/* Ajuste do checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.checkbox-group label {
    font-size: 14px;
}