html {
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 0.8px;
    min-height: 100vh;
    color: #d8e9ef;
    background-image: linear-gradient(-20deg, #025159 0%, #733b36 100%);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    margin-bottom: 10px;
    color: #d8e9ef;
    text-align: center;
}

.app-container {
    position: relative;
    width: 280px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.app-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 10px auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    transition: stroke-dashoffset 1s linear;
    stroke-linecap: round;
}

.app-counter-box {
    position: absolute;
    font-family: 'Droid Sans Mono', monospace;
    font-size: 250%;
    color: #d8e9ef;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}


button,
.input-time {
    width: 100%;
    height: 45px;
    font-size: 18px;
    text-align: center;
    border: 2px solid white;
    border-radius: 45px;
    outline: none;
    background: transparent;
    color: white;
    transition: 0.3s ease-in-out;
    margin-top: 10px;
    padding: 10px 0;
    box-sizing: border-box;
}

/* Hover de los botones */
button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}


.input-time::placeholder {
    color: rgba(255, 255, 255, 0.6);
}


.input-time:hover,
.input-time:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #e85a71;
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.input-time::-webkit-outer-spin-button,
.input-time::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-reset {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-reset:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#pomodoro-leave {
    width: 20%;
    position: relative;
    bottom: 48%;
    left: 32%;
    rotate: degrees(90);
    z-index: -1;
}
