* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;

    background:
    linear-gradient(
        135deg,
        #f1e4ff,
        #c89dff
    );

    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;
}

.card {

    width: 100%;
    max-width: 500px;

    background: rgba(255,255,255,0.8);

    backdrop-filter: blur(15px);

    border-radius: 30px;

    padding: 30px;

    text-align: center;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.1);
}

h1 {
    color: #5f1ca8;
    font-size: 40px;
    margin-bottom: 10px;
}

p {
    color: #4e3a69;
    margin-bottom: 25px;
}

input[type=file] {

    width: 100%;

    padding: 16px;

    border-radius: 15px;

    border: 1px solid #d3b3ff;

    margin-bottom: 20px;

    background: white;
}

button,
.btn {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 18px;

    background: #6d28d9;

    color: white;

    font-weight: bold;

    cursor: pointer;

    text-decoration: none;

    display: block;

    margin-top: 12px;

    transition: 0.3s;
}

button:hover,
.btn:hover {
    transform: scale(1.03);
}

.secondary {
    background: #ffffff;
    color: #6d28d9;
}

.result {

    width: 100%;

    border-radius: 25px;

    margin-top: 20px;
}

@media(max-width:600px) {

    h1 {
        font-size: 30px;
    }

    .card {
        padding: 20px;
    }

}