* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h3 {
    font-size: 22px;
}


body {
    background-color: #4D46A5;
    background-image: url('./img/image 45.png');
    background-size: cover;
    font-family: sans-serif;
}


.card {
    width: 640px;
    height: 726px;
    background-color: white;
    border: solid white;
    border-radius: 20px;
    margin: 100px auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.card__atas {
    width: 600px;
    padding: 12px;
    border-radius: 20px;
    border: 0.5px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}


.basic,
.standard,
.premium {
    width: 200px;
    height: 100px;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.active-plan {
    background-color: #45A69A;
    color: white;
}





.card__content {
    display: flex;
    flex-direction: column;
    width: 600px;
    padding: 64px;
    gap: 32px;
}

.top {
    gap: 12px;
    margin: 8px;
    display: flex;
    flex-direction: column;
    
    .price{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

.paragraph {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px;
}

.paragraph-1,
.paragraph-2 {
    display: flex;
    align-items: center;
    gap: 8px;
}


button {
    margin-top: 20px;
    width: 420px;
    height: 72px;
    background-color: #4D46A5;
    color: white;
    border: none;
    border-radius: 36px;
    cursor: pointer;
}

.notif {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    color: rgb(2, 2, 2);
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}