@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #e0e5ec;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
}

.container {
    background: #e0e5ec;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 8px 8px 16px #b8babe, -8px -8px 16px #ffffff;
    text-align: center;
    width: 95%;
    max-width: 800px;
}

h1 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    padding: 0 20px;
}

.input-group {
    flex: 1;
    min-width: 150px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: #e0e5ec;
    box-shadow: inset 4px 4px 8px #b8babe, inset -4px -4px 8px #ffffff;
    color: #2c3e50;
    outline: none;
    text-align: center;
}

textarea {
    height: 70px;
    resize: none;
    text-align: left;
}

.uuid-box {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
    width: 100%;
}

button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    background: #e0e5ec;
    box-shadow: 4px 4px 8px #b8babe, -4px -4px 8px #ffffff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px #b8babe, -6px -6px 12px #ffffff;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        width: 95%;
    }

    .input-row {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px; /* Left & right spacing ko balance kiya */
    }

    .input-group {
        width: 100%;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    button {
        width: 100%;
    }

    textarea {
        height: 130px;
    }
}
input, textarea {
    width: 100%;
    padding: 10px 15px; /* Left & Right padding equal */
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: #e0e5ec;
    box-shadow: inset 4px 4px 8px #b8babe, inset -4px -4px 8px #ffffff;
    color: #2c3e50;
    outline: none;
    text-align: left; /* Text left align rahega */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}
