body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('green.jpeg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    backdrop-filter: blur(5px); /* Blur effect for the background */
}

.search-bar input {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 25px;
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.description {
    font-size: 16px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    max-width: 300px;
}

.actions {
    display: flex;
    flex-direction: column;
}

.action-btn {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: background 0.3s;
}

.action-btn:hover {
    background: #ccc;
}

.social-signin {
    color: white;
    margin-top: 20px;
}
