body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
}

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


/* Disabled button styles */
button:disabled {
    background-color: #ccc; /* Grey background */
    color: #888; /* Light grey text */
    cursor: not-allowed; /* Not-allowed cursor */
    opacity: 0.6; /* Slightly transparent */
}

button {
 outline: none;
 cursor: pointer;
 border: none;
 margin: 0.9rem 2rem;
 padding: 15px 20px; /* Add padding */
 font-family: inherit;
 font-size: inherit;
 position: relative;
 display: inline-block;
 letter-spacing: 0.05rem;
 font-weight: 700;
 font-size: 17px;
 border-radius: 500px;
 overflow: hidden;
 background: #0000ff;
 color: ghostwhite;
}

button span {
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

button:hover span {
 color: white;
}

button::before,
button::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

button::before {
 content: "";
 background: #000;
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

button:hover::before {
 transform: translate3d(100%, 0, 0);
}

.social-buttons {
    display: flex;
    justify-content: space-between;
}

.social-buttons button {
    background-color: #007bff;
}

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

/* Center the element-container vertically */
.element-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#successMessage {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}