.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    position: relative;
}

.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-img {
    height: 60px;
    width: auto;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 10;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    color: #344054;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #797979;
    margin-bottom: 2rem;
    max-width: 600px;
}

.content-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background-image: url('shape.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
