/* === home.css – nowoczesny styl CTA dla skracacza linków === */

.col-50{
    width: 50%;
    float: left;
}

.shortener {
    background: #fff;
    padding: 60px 0;
}

.shortener p.lead {
    color: #bbb;
    font-size: 20px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.shortener .row-1{
    text-align: center;
}

.shortener .row-1 h1{
    margin-top: 0;
}

.shortener .row-1 p{
    max-width: 930px;
    margin: auto;
}

.shortener .row-2{
    display: flex;
    align-items: center;
    gap:30px;
    margin-top: 60px;
}

.short-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    padding: 20px;
    margin-bottom: 0;
    border: 1px solid #ddd;
}

.short-form input[type="url"],
.short-form input[type="text"] {
    padding: 20px 18px;
    border-radius: 0;
    border: 1px solid #ddd;
    background: #fff;
    color: #000;
    font-size: 17px;
}

.short-form input:focus {
    border-color: #000;
    outline: none;
}

.short-form input::placeholder {
    color: #000;
    font-size: 15px;
}

.premium-options {
    background: #fff;
    padding: 20px;
    text-align: left;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.premium-options label {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.premium-options small,
.premium-options a {
    font-size: 13px;
    color: #888;
}

.premium-options a {
    color: #df1312;
    text-decoration: underline;
}

.options-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.options-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    font-size: 15px;
}

.short-form button[type="submit"] {
    background: #df1312;
    border: 2px solid #df1312;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.short-form button[type="submit"]:hover {
    background: none;
    color: #df1312;
}

.featurebox{
    background: #eee; 
    padding: 20px; 
    border-radius: 0;
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lasts-posts h2{
    text-align: center;
}

.desc{
    padding-top: 60px;
}

.desc ul{
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.desc ul li{
    margin-bottom: 15px;
}

.desc ul li:last-child{
    margin-bottom: 0;
}

.expiry-options select {
    background-color: #1e1e2e;
    color: #fff;
    border: 1px solid #2b2d3c;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    max-width: 220px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ccc' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    border-color: #df1312;
    transition: border-color 0.2s ease;
    margin-top: 10px;
    cursor: pointer;
}

.expiry-options select:focus {
    border-color: #df1312;
    outline: none;
}


body.home .page-title{
    border-bottom: 0;
}

.container1{
    display: flex;
    align-items: center;
    gap:60px;
}

.col-50.col-2 img{
    width: 100%;
    height: auto;
}