:root {
    --bg: #320003;
    --text: #efe6cb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'EB Garamond', serif;
    background-color: var(--bg);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.logo {
    max-width: 350px;
    padding-bottom: 40px;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea {
    color: var(--text);
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--text);
    border-radius: 20px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    font-size: 18px;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

textarea {
    border-radius: 24px;
    resize: none;
    min-height: 120px;
}

input::placeholder,
textarea::placeholder {
    color: #7c786ccb;
    font-weight: 400;
}

input:focus,
textarea:focus {
    background-color: #460105;
}

button {
    background-color: var(--text);
    color: var(--bg);
    border: 1px solid var(--text);
    padding: 18px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

button:hover {
    background-color: var(--bg);
    color: var(--text);
}

#notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);

    min-width: 280px;
    background-color: #460105;
    color: var(--text);
    text-align: center;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0.6s;
}

#notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0s;
}

.file-wrapper {
    width: 100%;
    margin-bottom: 0;
}

input[type="file"] {
    display: none;
}

.file-label {
    display: block;
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--text);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    background: transparent;
    color: #7c786c;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-label:hover {
    background-color: #460105;
    color: var(--text);
}

.file-label.selected {
    background-color: #460105;
    font-weight: 500;
}