body {  
    margin: 0;  
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;  
    background-color: #e0f7fa;  
    color: #00695c;  
}  

h1, h2, h3 {  
    font-weight: 600;  
    color: #004d40;  
}  

a {  
    color: #00897b;  
    text-decoration: none;  
}  

a:hover {  
    color: #004d40;  
    text-decoration: underline;  
}  

/* Froge-themed buttons and forms */  
button {  
    background-color: #00796b;  
    color: #ffffff;  
    border: none;  
    padding: 10px 20px;  
    text-align: center;  
    text-decoration: none;  
    display: inline-block;  
    font-size: 16px;  
    margin: 4px 2px;  
    transition-duration: 0.4s;  
    cursor: pointer;  
}  

button:hover {  
    background-color: #004d40;  
    color: white;  
}  

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"] {  
    width: 100%;  
    background-color: #00897b;  
    color: white;  
    padding: 14px 20px;  
    margin: 8px 0;  
    border: none;  
    border-radius: 4px;  
    cursor: pointer;  
}  

input[type="submit"]:hover {  
    background-color: #00695c;  
}  

footer {  
    background-color: #004d40;  
    color: #ffffff;  
    text-align: center;  
    padding: 10px 0;  
    position: fixed;  
    left: 0;  
    bottom: 0;  
    width: 100%;  
}  