@font-face {
    font-family: Jost;
    src: url(Jost-400-Book.otf);
}
@font-face {
    font-family: Jost;
    src: url(Jost-700-Bold.otf);
    font-weight: bold;
}
body {
    font-family: Jost, sans-serif;
    padding: 2rem;
    max-width: 600px;
    margin: auto;
    background-color: #3a2671;
    color: #f5f5f5;
}

.app-option {
    position: relative;
    border: 1px solid #ccc;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #f4f4f4;
    color: #f38337;
    cursor: pointer;
    text-align: center;
}

.app-option h3 {
    margin: 0;
    font-size: 1.5rem;
}

.app-option.expanded {
    background: #f4f4f4;
    padding: 1.5rem;
}

.app-details {
    display: none;
    margin-top: 1rem;
}

.app-option.expanded .app-details {
    display: block;
}

input[type="email"],
input[type="password"],
input[type="file"] {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
    padding: 0.5rem;
}

.submit-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
}

.close-button {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    display: none;
}

.app-option.expanded .close-button {
    display: block;
}
