@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Rubik', sans-serif;
}

.section {
    height: 100dvh;
    background: #041C26;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.section__container {
    position: relative;
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    border-radius: 12px;
    padding: 1.5rem;
    background: #052432;
    color: #D2E4F0;
    border: 1px solid rgba(255, 246, 247, 0.10);
    overflow: hidden;
}

.section__container:after {
    content: '';
    background: radial-gradient(50% 50% at 50% 50%, rgba(51, 182, 55, 0.10) 0%, rgba(51, 182, 55, 0.00) 100%);
    width: 360px;
    height: 240px;
    position: absolute;
    left: 50px;
    top: -120px;
    pointer-events: none;
}

.section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.section__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px
}

.section__text > h1 {
    font-size: 1.5rem;
}

.section__text > p {
    font-size: 0.875rem;
    color: rgba(210, 228, 240, 0.50);
}

.section__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 38px;
    padding: 12px 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #33B637 0%, #249033 100%);
    color: #041C26;
    text-decoration: none;
    transition: all 0.2s ease;
}

.section__button:hover {
    background: linear-gradient(90deg, #3bd240 0%, #2cae3d 100%);
}

.section__button:focus-visible {
    outline: 2px solid #3B99EB; 
    outline-offset: 2px;
}