﻿body {
    background-color: transparent;
}

.btnPostular {
    background-color: #d72c25;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 32px;
    border-radius: 44px;
    text-align: center;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    font-size: 1.125rem;
    font-family: "Roboto Slab", serif;
}

    .btnPostular:hover {
        background-color: #d72c25d9;
        color: white;
        text-decoration: underline;
    }

    .btnPostular:focus,
    .btnPostular:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 3px;
        box-shadow: 0 0 0 4px rgba(var(--acento-red-dark-3), 0.4);
    }

.postularFixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #002673;
    padding: 16px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.postularFixedDisabled {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333333;
    padding: 16px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

    .postularFixedDisabled p {
        color: white;
        font-size: 18px;
        text-align: center;
        font-family: "Roboto Slab", serif;
    }

@media (min-width: 768px) {
    .btnPostular {
        font-size: 1.5rem;
    }

    .postularFixedDisabled p {
        font-size: 24px;
    }
}
