@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

h1 {
    color: #333333;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
    border-color: #007bff;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

button {
    width: 100%;
    padding: 15px;
    background-color: #007bff; /* Blue color */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover {
    background-color: #0056b3; /* Dark blue color */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


