* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #0D0D0D;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    color: white;
    text-align: center;
}

.form-container {
    background-color: #1A1A1A;
    border: 1px #313131 solid;
    width: 600px;
    border-radius : 32px;
    overflow: hidden;
    box-shadow: 0px 0px 100px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

.top-container {
    width: 100%;
    height: 250px;
    position: relative;
    margin-bottom: 40px;
}

.banner {
    width: 100%;
    height: 250px;
    background-image: url('../img/banner.png');
    background-position: center;
    background-size: cover;
    border-bottom: 1px #313131 solid;
}

.icon {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    position: absolute;
    bottom: -40px;
    left: 245px;
    border: 1px #313131 solid;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-store-btn {
    margin-right: 15px;
}

.play-store-btn, .app-store-btn {
    width: 262.5px;
    transition: 0.25s all;
}

.play-store-btn:hover, .app-store-btn:hover {
    transform: scale(1.025);
}

.play-store-btn:active, .app-store-btn:active {
    transform: scale(0.975);
}

.content {
    padding: 15px 30px 30px 30px;
}

.title {
    font-size: 28px;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    margin-bottom: 40px;
}

.parallax-background {
    position: absolute;
    top: 0;
    z-index: -1; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
