
* {
    font-family: "Passero One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0;
    background-image: linear-gradient(to bottom, rgb(93, 148, 142), rgb(49, 85, 83));
}

.main-content {
    display: flex;
    width: 60%;
    margin: 0 auto; /* centers it properly */
    min-height: 100vh;
    flex-direction: column;
    padding: 25px;
    background-image: linear-gradient(to bottom, rgba(87, 114, 97, 0.8), rgba(53, 85, 64, 0.8));
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.37);
    border-radius: 0px;
}


@media (max-width: 950px) {
    .main-content {
        width: 100%;
        margin: 0;
    }
}


.title-text {
    font-family: "UnifrakturCook", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 3.4rem;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0px;
}

.title-img {
    width: 536px;
    height: 171px;
    align-self: center;
}

.doorbell-gif {
    width: 654px;
    height: 368px;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.37);
    border-radius: 0px;
    align-self: center;
    margin: 25px;
}



.verify-form {
    background-color: rgb(97, 145, 125);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.37);
    border-radius: 22px;
    padding: 25px
}

.error {
    background-color: rgba(173, 75, 75, 0.699);
    border: 1px solid rgb(110, 41, 41);
    border-radius: 15px;
    padding: 15px;
    color: rgb(124, 21, 21);
}

.nav {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    background: #111;
    border: 2px solid #000;
    border-radius: 15px;
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-list li a:hover {
    background: #222;
    color: #ddd;
}

.nav-img {
    height: 40px;
    display: block;
}

.nav-list li a {
    background: transparent;
}

.nav-list li a:hover {
    background: #333;
}

