body {
    height: 100vh;
    margin: 0;
    font-family: sans-serif;
    align-items: center;
    justify-content: center;
}

.form {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
    margin: 50px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form input:focus {
    border-color: #34963b;
    box-shadow: 0 0 5px rgba(52, 150, 59, 0.4);
    outline: none;
}

.form button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background-color: #34963b;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form button:hover {
    background-color: #287233;
    transform: translateY(-2px);
}

.reset{
    margin-bottom: 173px;
}
/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .form-col {
        flex: 1 1 100%;
    }

    .form {
        padding: 1rem;
    }
}
