/* Import for custom font */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

/*  Main section */

/* Main section background styling */
main {
    background: url('obrazky/blog-thumb2.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
main::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.main-content {
    position: relative;
    z-index: 2;
}

main button {
    margin-top: 20px;
}

main p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Login section */

.login-section {
    background: url('obrazky/newsletter-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.login-box {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
}

/* Login in form color addjustment */

::placeholder {
    color: white !important;
    opacity: 1 !important;
}

/* Button styling */

.btn {
    background-color: #072f6b;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #61b8ff;
}