body {
    background-color: #f0f9ff;
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #3b5998;
}

a {
    color: #3b5998;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #6d84b4;
}

.froge-banner {
    background-color: #7B1FA2;
    color: #ffffff;
    text-align: center;
    padding: 1em 0;
    font-size: 1.5em;
}

button, .button-style {
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover, .button-style:hover {
    background-color: #45a049;
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

input[type="text"], input[type="email"] {
    width: 80%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="email"]:focus {
    border-color: #3b5998;
}