.detail-container {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    }

    .detail-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 4px;
    }

    input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    }

    input[type="submit"]:hover {
    background-color: #45a049;
    }

    .form-group {
    margin-bottom: 20px;
    }

    .form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    }

    .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    }

    .form-control:focus {
    outline: none;
    border-color: #4CAF50;
    }

    .form-help {
    margin-top: 5px;
    font-size: 14px;
    color: #888;
    }

    .containt{
        display: flex;
        gap: 50px;     
        justify-content: center;
        align-items: center;
        margin: 0 auto; /* Add this line */

    }