@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    padding: 20px;
}

.card {
    max-width: 430px;
    margin: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* LOGO */
.logo-wrapper {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 15px;
}

.logo-wrapper img {
    width: 65px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.card h1 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 4px;
}

.subtitle {
    text-align: center;
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 25px;
}

label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

input[type="date"] {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 14px;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    border: 1px solid black;
    border-radius: 14px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.result {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.box {
    width: 30%;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.box span {
    display: block;
    font-size: 28px;
    font-weight: 600;
}

.box small {
    font-size: 12px;
    opacity: 0.85;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.btn-primary {
    flex: 1;
    padding: 14px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    border: none;
    border-radius: 14px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

.btn-reset {
    flex: 1;
    padding: 14px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    color: #050505;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

