.div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.cent-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.cent-form h1 {
    margin-bottom: 20px;
    padding: 20px;
    color: rgb(0, 0, 0);
}

.cent-form input[type="text"],
.cent-form input[type="password"],
.cent-form input[type="email"] {
    width: 328px;
    padding: 10px;
    margin: 8px 0 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.cent-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #5f7cff, #6c7ae0);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.cent-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(95,124,255,0.4);
}

.cent-form label {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #555;
}


