/* Froge Theme Stylesheet */
body {
    background-color: #e0f7da;
    color: #333333;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #4caf50;
    text-shadow: 2px 2px #b3e5fc;
}

a {
    color: #388e3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1b5e20;
}

.button {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.button:hover {
    background-color: #388e3c;
}

#froge-container {
    background: url('./froge_background.svg');
    padding: 20px;
    border-radius: 8px;
}

input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    background-color: #4caf50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}