* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

h1 {
    font-size: 2rem;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-image: url("../img/background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 99;
    color: white;
    gap: 1rem;
    max-width: 600px;
}

.company-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}


span.mindwebz-logo {
    display: inline;
    text-decoration: none;
    cursor: pointer;
}

.mindwebz-logo img {
    width: 40px;
    height: auto;
}

.mindwebz-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.content h1 {
    line-height: 2rem;
}

.socials {
    display: flex;
    font-size: 1.5rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.socials > a {
    text-decoration: none;
    color: white;
}

.notify {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.notify form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.notify input[type="email"] {
    border: none;
    outline: none;
    background: white;
    padding: 0.5rem;
    border-radius: 0.2rem;
}

.notify button.input-group-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    background-color: white;
    border: none;
    color: black;
    font-size: 0.75rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

@media (max-width: 768px) {

    .content h1 {
        text-transform: uppercase;
    }

    .notify form {
        gap: 0.2rem;
    }

    .notify input[type="email"] {
        padding: 0.5rem;
    }

    .socials {
        gap: 1rem;
    }

    .content p.lead {
        max-width: 80vw;
    }
}

.alert {
    padding: 12px 20px;
    border-radius: 4px;
    margin: 10px 0;
    position: absolute;
    top: 10%;
    right: 30px;
    transition: opacity 0.3s ease;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    background: none;
    border: none;
    cursor: pointer;
}

.close:hover {
    opacity: 1;
}