body {
    background-color: #eeeeee;
    justify-content: center;
    align-items: center;
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #614a00;
}

.navbar {
    width: 100%;
    border-radius: 20px;
}

.navbar .navbar-brand img {
    border-radius: 5px;
}

/* Div de Login e Cadastro */

.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Doar */

.doar-container button:active {
    scale: 0.95;
}

.doar-container .logo-container {
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

.doar-container .doar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doar-container .doar-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.doar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Forms: login e cadastro */

.form-container {
    width: 350px;
    background-color: #fff;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: #212121;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

.form-container button:active {
    scale: 0.95;
}

.form-container .logo-container {
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}

.form-container .form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-container .form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-container .form-group input[type="text"],
.form-container .form-group input[type="email"],
.form-container .form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: inherit;
    border: 1px solid #ccc;
}

.form-container .form-group input::placeholder {
    opacity: 0.5;
}

.form-container .form-group input[type="text"]:focus,
.form-container .form-group input[type="password"]:focus {
    outline: none;
    border-color: #1778f2;
}

.form-container .form-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    color: #fff;
    background-color: #212121;
    border: none;
    width: 100%;
    padding: 12px 16px;
    font-size: inherit;
    gap: 8px;
    margin: 12px 0;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

.form-container .form-submit-btn:hover {
    background-color: #313131;
}

.form-container .link {
    color: #1778f2;
    text-decoration: none;
}

.form-container .forgot-password-link {
    align-self: flex-end;
    margin-top: -20px;
}

.form-container .signup-link {
    align-self: center;
    font-weight: 500;
}

.form-container .signup-link .link {
    font-weight: 400;
}

.form-container .link:hover {
    text-decoration: underline;
}

.form-container .line {
    width: 100%;
    height: 1px;
    background-color: #212121;
    opacity: 0.1;
}

/* Dark Mode 3D Button */

button {
    font: inherit;
    background-color: #2a2a2a;
    border: 0;
    color: #e0e0e0;
    border-radius: 5px;
    font-size: 1.35rem;
    padding: 0.375em 1em;
    font-weight: 600;
    text-shadow: 0 0.0625em 0 #000;
    box-shadow:
        inset 0 0.0625em 0 0 #3a3a3a,
        0 0.0625em 0 0 #252525,
        0 0.125em 0 0 #202020,
        0 0.25em 0 0 #1c1c1c,
        0 0.3125em 0 0 #181818,
        0 0.375em 0 0 #141414,
        0 0.425em 0 0 #101010,
        0 0.425em 0.5em 0 #0a0a0a;
    transition: 0.15s ease;
    cursor: pointer;
}

button a {
    text-decoration: none;
    color: #e0e0e0;
    font: inherit;
}

button:active {
    translate: 0 0.225em;
    box-shadow:
        inset 0 0.03em 0 0 #3a3a3a,
        0 0.03em 0 0 #252525,
        0 0.0625em 0 0 #202020,
        0 0.125em 0 0 #1c1c1c,
        0 0.125em 0 0 #181818,
        0 0.2em 0 0 #141414,
        0 0.225em 0 0 #101010,
        0 0.225em 0.375em 0 #0a0a0a;
}

/* Select Estilização */

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: inherit;
    border: 1px solid #ccc;
    font-size: 14px;
    cursor: pointer;
    background-color: #fff;
    color: #212121;
}

.form-group select:focus {
    outline: none;
    border-color: #1778f2;
}

/* Temas de Personalidade */

body.tema-criativo {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: #333;
}

body.tema-criativo .form-container {
    background-color: #fef9f3;
    box-shadow: 0px 8px 20px rgba(255, 200, 100, 0.3);
}

body.tema-sensivel {
    background: linear-gradient(135deg, #ffc0d9 0%, #f8b4d6 100%);
    color: #5a3a5a;
}

body.tema-sensivel .form-container {
    background-color: #fff5f9;
    box-shadow: 0px 8px 20px rgba(255, 192, 217, 0.4);
}

body.tema-sombrio {
    background: #1a1a1a;
    color: #e0e0e0;
}

body.tema-sombrio .form-container {
    background-color: #2a2a2a;
    color: #e0e0e0;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.8);
}

body.tema-sombrio .form-container .form-group input[type="text"],
body.tema-sombrio .form-container .form-group input[type="password"],
body.tema-sombrio .form-container select {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-color: #444;
}

body.tema-tecnologico {
    background-color: #000;
    color: #00ff00;
}

body.tema-tecnologico .form-container {
    background-color: #0a0a0a;
    color: #00ff00;
    box-shadow: 0px 0px 20px rgba(0, 255, 0, 0.3);
}

body.tema-tecnologico .form-container .form-group input[type="text"],
body.tema-tecnologico .form-container .form-group input[type="password"],
body.tema-tecnologico .form-container select {
    background-color: #0a0a0a;
    color: #00ff00;
    border: 1px solid #00ff00;
}

body.tema-gamer {
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    color: #ff3333;
}

body.tema-gamer .form-container {
    background-color: #2a0000;
    color: #ff3333;
    box-shadow: 0px 0px 20px rgba(255, 51, 51, 0.4);
}

body.tema-gamer .form-container .form-group input[type="text"],
body.tema-gamer .form-container .form-group input[type="password"],
body.tema-gamer .form-container select {
    background-color: #1a0a0a;
    color: #ff3333;
    border: 1px solid #ff3333;
}

/* Banner */

.banner-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}
.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sobre */

.sobre {
    width: 100%;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.sobre .title {
    text-align: center;
    margin-bottom: 30px;
}

.sobre .title h1 {
    font-size: 2.5rem;
    color: #0029e2;
    font-weight: bold;
    margin: 0;
}

.sobre .conhecer {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084), 0px 2px 3px rgba(0, 0, 0, 0.168);
}

.sobre .conhecer p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

