body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    /* Subtle pattern to mimic the image's background */
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #555;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: #666;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-transform: uppercase;
}

h2 {
    font-size: 1.2rem;
    color: #666;
    margin: 0 0 5px 0;
    font-weight: 400;
}

p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #555;
}

input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #888;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

button {
    background-color: #d81b60; /* Pinkish red */
    color: white;
    border: none;
    padding: 10px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.1s, box-shadow 0.1s;
    border: 2px solid #fff; /* Inner white border effect */
    outline: 3px solid #d81b60; /* Outer pink border effect */
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.icon svg {
    display: block;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}
