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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: url('/Images/landing.png') bottom/cover no-repeat;

}


/* .overlay {
    background: url('/Images/landing.png') bottom/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
} */


.content-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 380px;
    margin: 24.5vh auto 24.5vh 25vw;
}


.logo-image {
    width: 150px;
    margin-bottom: 15px;
}

h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.content-card{
    font-size: 14px;
    color: #555;
}
.content-card p{
    margin-bottom: 20px;

}

/* Sign Up Button */
.signup-btn {
    background:#3A49DA;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.signup-btn:hover {
    background: #5a3bae;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .content-card {
        padding: 30px;
        max-width: 320px;
    }

    .logo-image {
        width: 120px;
    }

    h1 {
        font-size: 18px;
    }

    .signup-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
