body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
}

label {
    color: rgb(8, 8, 2);
    font-weight: bold;
    text-align: left;
    display: block;
    margin-bottom: 5px;
}

.container {
    background-color: purple;
    border-radius: 10px;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
    box-shadow: 0 4px 6px rgba(64, 84, 110, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    width: 400px;
    text-align: center;
}

h1 {
    color: white;
}

h2 {
    color: wheat;
}

.container:hover {
    box-shadow: 0 8px 12px rgba(48, 105, 185, 0.2);
}

.input-grp {
    margin-bottom: 15px;
}

input {
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 3px solid #030303;
    border-radius: 8px;
    transition: border-color 0.3s ease-in-out;
}

input:focus {
    border-color: #332b91;
    outline: none;
}

button {
    padding: 12px;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(90deg, #5beca1, #4dffde);
    color: rgb(0, 0, 0);
    font-weight: bolder;
    border: black;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-bottom: 10px;
}

button:hover {
    background: linear-gradient(90deg, #4ef15c, #906fea);
    transform: scale(1.05);
    border: black;
}

#result {
    margin-top: 20px;
    font-weight: bolder;
    color: #0c0404;
    animation: fadeIn 1s ease-in-out;
    align-items: center;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .container {
        width: 90%;
    }

    input {
        width: 100%;
    }

    button {
        width: 100%;
    }
}