:root {
    --text: #EBE9FC;
    --primary-color: #3A31D8;
    --second-color: #020024;
    --accent: #0600C2;
    --black-color: #010104;
    --light-accent: #DDDBFF;
}

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

body {
    font-family: "Segoe UI";
    color: var(--text);
    background-image: url("/brR.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: var(--second-color);
}

a:hover {
    text-decoration: underline;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
}

.login_box {
    position: relative;
    width: 450px;
    backdrop-filter: blur(25px);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 7.5em 2.5em 4em 2.5em;
    color: var(--second-color);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}

.login-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    width: 140px;
    height: 70px;
    border-radius: 0 0 20px 20px;
}

.login-header span {
    font-size: 30px;
    color: var(--black-color);
}

.login-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    border-top-right-radius: 50%;
    background: transparent;
    box-shadow: 15px 0 0 0 var(--primary-color);
}

.login-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 30px;
    height: 30px;
    border-top-left-radius: 50%;
    background: transparent;
    box-shadow: -15px 0 0 0 var(--primary-color);
    /* Removed space before --primary-color */
}

.input_box {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.input-field {
    width: 100%;
    height: 55px;
    font-size: 16px;
    background: transparent;
    color: var(--second-color);
    padding-inline: 20px 50px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    outline: none;
}

#user {
    margin-bottom: 10px;
}

.label {
    position: absolute;
    top: 15px;
    left: 20px;
    transition: 0.2s;
}

.input-field:focus~.label,
.input-field:valid .label {
    /* Added missing closing brace here */
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 14px;
    background-color: var(--primary-color);
    border-radius: 30px;
    color: var(--black-color);
    padding: 0 10px;
}

/* Closed the missing brace */

.icon {
    position: absolute;
    top: 18px;
    right: 25px;
    font-size: 20px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.input-submit {
    width: 100%;
    height: 50px;
    background: transparent;
    border: var(--primary-color) 2px solid;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.input-submit:hover {
    background: var(--primary-color);
}

.register {
    text-align: center;
}

.register a {
    font-weight: 500;
}

@media only screen and (max-width: 564px) {
    .wrapper {
        padding: 20px;
    }

    .login_box {
        padding: 7.5em 1.5em 4em 1.5em;
    }
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.blurbox {
    position: relative;
    backdrop-filter: blur(25px);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2em 2em 2em 2em;
    color: var(--second-color);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}

.full {
    height: 100%;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

li {
    font-size: 1.5rem;
}

.search-label {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: var(--text);
    border: var(--primary-color) 2px solid;
    padding: 9px;
    cursor: text;
    width: 60vw;
    height: 5vh;
}

.search-label:hover {
    border-color: var(--accent);
}

.search-label:focus-within {
    background: var(--light-accent);
    border-color: var(--accent);
}

.search-label input {
    outline: none;
    width: 100%;
    border: none;
    background: none;
    color: var(--second-color);
}

.search-label input:focus+.slash-icon,
.search-label input:valid+.slash-icon {
    display: none;
}

.search-label input:valid~.search-icon {
    display: block;
}

.search-label input:valid {
    width: calc(100% - 22px);
    transform: translateX(20px);
}

.search-label svg,
.slash-icon {
    position: absolute;
    color: var(--second-color);
}

.search-icon {
    display: none;
    width: 12px;
    height: auto;
}

.slash-icon {
    right: 7px;
    border: 1px solid var(--accent);
    background: linear-gradient(-225deg, var(--primary-color), var(--second-color));
    border-radius: 3px;
    text-align: center;
    box-shadow: inset 0 -2px 0 0 #3f3f3f, inset 0 0 1px 1px rgb(94, 93, 93), 0 1px 2px 1px rgba(28, 28, 29, 0.4);
    cursor: pointer;
    font-size: 12px;
    width: 15px;
    color: var(--text);
}

.slash-icon:active {
    box-shadow: inset 0 1px 0 0 #3f3f3f, inset 0 0 1px 1px rgb(94, 93, 93), 0 1px 2px 0 rgba(28, 28, 29, 0.4);
    text-shadow: 0 1px 0 #7e7e7e;
    color: transparent;
}

#file-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#file-list li {
    flex: 1 1 calc(33.33% - 10px); /* Three columns with some spacing */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f1f1f1;
    border-radius: 5px;
}

#file-list a {
    text-decoration: none;
    color: #333;
}

#file-list a:hover {
    text-decoration: underline;
}

#file-list i {
    margin-right: 8px;
}