body {
    background-color: #f4f4f4; 
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

form {
    width: 280px;
    padding: 20px;
    background-color: white;
    border-radius: 20px; 
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15); 
    position: relative;
}

input, button {
    padding: 10px;
    width: -webkit-fill-available;
    margin-bottom: 10px;
    border: 1px solid #ddd; 
}

input:focus {
    border-color: #2e7d32; 
    outline: none;
}

button {
    cursor: pointer;
    margin-bottom: 10px;
}

.form-field {
    margin-bottom: 10px;
}


form::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 20px;
    z-index: -1;
    filter: blur(15px);
}
