/* Estilos personalizados para a página */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
	background: url('../../assets/img/jardim.jpeg') right bottom no-repeat;
	 background-size: 100% 100%;
}

/* Estilos para o cabeçalho */
header {
    background-color: #348e38;
  border-bottom: 5px solid #9dd218;
    color: #fff;
    padding:5px;
    text-align: center;
}

header h1 {
    font-size: 36px;
}
h2{
  font-size: 26px;
  text-align:center;
  padding: 10px 10px;
}
/* Estilos para o conteúdo principal */
.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Estilos para os modais */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #f1f1f1;
    padding: 20px;
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos para os formulários */
form {
    display: flex;
    flex-direction: column;
}

input[type="email"],
input[type="password"] {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
.payment-container {
    flex: 0 0 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.payment-option {
    width: 300px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-option img {
    max-width: 100%;
    max-height: 100%;
}

/* Estilos para responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .payment-container {
        flex-direction: column;
        align-items: center;
    }

    .payment-option {
        margin: 5px 0;
    }
}