body {
    background-color: #e0ffe0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

h1, h2, h3 {
    color: #286e10;
    text-align: center;
}

p {
    color: #334433;
    line-height: 1.6;
}

a {
    color: #1a5800;
    text-decoration: underline;
}

.froge-container {
    margin: auto;
    max-width: 800px;
}

button {
    background-color: #7fcc70;
    border: none;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5fa956;
}

.froge-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    background-image: url('/images/froge-icon.svg');
}

input[type="text"], input[type="email"] {
    width: 95%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}