@charset "UTF-8";

/* Reset and Base Styles */
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 106.25%;
    quotes: "“" "”";
}

:lang(de) {
    quotes: "„" "“";
}

* {
    box-sizing: border-box;
    transition: all 0.25s ease-out;
}

body {
    max-width: 100%;
    height: 100%;
    font-size: 1em;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    background-color: #222;
    color: #1d1d1f;
    font-style: normal;
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

body {
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-synthesis: none;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: ltr;
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-weight: 600;
   color: #1d1d1f; 
}

a,
.link {
    color: #06c;
    letter-spacing: inherit;
    text-decoration: none;
}

a:hover,
.link:hover {
    text-decoration: underline;
}

a:active,
.link:active {
    text-decoration: none;
}

a:disabled,
.link:disabled {
    opacity: 0.32;
}

b,
strong {
    font-weight: 600;
}

em,
i,
cite,
dfn {
    font-style: italic;
}

/* Layout Containers */
#wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.headline {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    color: white;
    padding: 20px 0;
}

.headline h2 {
    color: white;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    gap: 20px; 
}

.message-box,
.main-box,
.info-box {
    background-color: white;
    border-radius: 30px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 375px;
}

.message-box {
    width: 40%;
    min-width: 435px;
}

.main-box {
    width: 40%;
    min-width: 435px;
}

.info-box {
    width: 20%;
    min-width: 353px;
}

.info-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-logo {
    width: 100%;
    height: auto;
    max-width: 311px;
    margin-top: 20px;
}

.background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gradient {
    --size: 350px;
    --speed: 30s;
    --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
    width: var(--size);
    height: var(--size);
    filter: blur(calc(var(--size) / 5));
    background-image: linear-gradient(rgba(55, 235, 169, 0.85), #5b37eb);
    animation: rotate var(--speed) var(--easing) alternate infinite;
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}

@media (min-width: 720px) {
    .gradient {
        --size: 2000px;
    }
}

/* Utility Classes */
.message-content,
.challenge-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.message-content img,
.challenge-message img {
    width: auto;
    height: 20%;
    max-width: 311px;
    margin-bottom: 10px;
}

.password-section h1,
.create-password-result h1 {
    margin-bottom: 20px;
    color: #1d1d1f; /* Adjusted for better contrast */
}

.password-output {
    margin-bottom: 20px;
    resize: none;
    width: 100%;
    white-space: nowrap;
    max-width: 425px;
    overflow-y: hidden;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.password-output:focus {
    outline: none;
    border-color: #007BFF;
}

.challenge-form p {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.challenge-form h1 {
    margin-bottom: 20px;
}

.form-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.submit-button {
    appearance: none;
    background-color: transparent;
    border: 1px solid #1A1A1A;
    border-radius: 15px;
    box-sizing: border-box;
    color: #3B3B3B;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 20px;
    outline: none;
    padding: 16px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    max-width: 200px;
    will-change: transform;
}

.submit-button:disabled {
    pointer-events: none;
}

.submit-button:hover {
    color: #fff;
    background-color: #0297ed
}

.submit-button:active {
    box-shadow: none;
    transform: translateY(0);
}

.create-password-result a {
    color: #1d1d1f;
    text-decoration: underline;
}

.copied {
    background-color: #28a745 !important;
    color: #fff !important;
}

/* Additional Styling for Lists */
.info-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.info-content ul li {
    margin-bottom: 10px;
}

.info-content ul li a {
    color: #1d1d1f;
    text-decoration: none;
}

.info-content ul li a:hover {
    text-decoration: underline;
}

.create-password-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.create-password-form {
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-title {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #1d1d1f;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group .form-input {
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.form-append {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;
    color: #555;
}

.form-append.copy-button {
    color: #1d1d1f;
    width: 20%;
}

.form-actions {
    text-align: center;
    margin-top: 15px;
}

.submit-button {
    padding: 10px 20px;
    border: none;
    background-color: #1d1d1f;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}


.copy-area {
    outline: none;
    resize: none;        
    width: 80%;
}

.copy-area:disabled,
.copy-area[readonly]  {
    background-color: #f7f7f7
}

.message-content,
.challenge-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.message-content img,
.challenge-message img {
    width: 20%;
    max-width: 311px;
    margin-bottom: 10px;
}