* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:not(input):not(textarea):not(select) {
    user-select: none;
}
.screen {
    
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: "Inter", sans-serif;
    overflow: auto;

}
.screen .content {
    overflow: auto;
    width: 100%;
    height: 100%;
    max-width: 600px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}
.screen.login .logo {
    width: 100px;
    height: 100px;
    background: url(./../../../static/logo-dark/VSU-Box-iOS-Dark-256@1x.png) no-repeat center center;
    background-size: contain;
}
.screen.login {
    gap: 20px;
}
.screen.login .logo__text {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 30px;
    color: white;
}

.screen.login .field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 300px;
    width: 100%;
}
.screen.login .field .label {
    font-size: 14px;
}
.screen.login .field input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgb(28, 28, 30);
    outline: none;
    color: white;
}
.screen.login .field input:focus {
    outline: 2px solid rgb(0, 122, 255);
}
.screen.login .field input::placeholder {
    color: rgb(142, 142, 147);
}
.screen.login .button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgb(0, 122, 255);
    color: white;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}
.screen.login .button:hover {
    background: rgb(10, 132, 255);
}
.screen.login .privacy {
    opacity: 0.5;
    font-size: 12px;
    max-width: 300px;
    width: 100%;
    text-align: center;
}
.screen.login .privacy a {
    color: rgb(0, 122, 255);
    text-decoration: none;
}
.screen.dashboard .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}
.screen.dashboard .logo__text {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 20px;
    color: white;
}
.screen.dashboard .logo__image {
    width: 64px;
    height: 64px;
    background: url(./../../../static/logo-dark/VSU-Box-iOS-Dark-128@1x.png) no-repeat center center;
    background-size: contain;
}
.screen.dashboard .content {
    gap: 20px;
}
.screen.dashboard .userBox {
    background: rgb(28, 28, 30);
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.screen.dashboard .userBox img {
    border-radius: 10px;
}
.screen.dashboard .userBox .userInfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.screen.dashboard .userBox .userInfo .username {
    font-size: 20px;
}
.screen.dashboard .userBox .userInfo .login {
    font-size: 14px;
    opacity: 0.5;
}
.screen.dashboard .storage {
    background: rgb(28, 28, 30);
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.screen.dashboard .storage .storageTitle {
    font-size: 24px;
    font-family: "Dela Gothic One", sans-serif;
    width: 100%;
}
.screen.dashboard .storage .storageList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.screen.dashboard .storage .storageList .storageItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.screen.dashboard .storage .storageList .storageItem .storageValue {
    text-align: right;
}
.screen.dashboard .storage .storageList .storageItem .storageKey {
    opacity: 0.5;
}
.screen.dashboard .storage .button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgb(0, 122, 255);
    color: white;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    margin-left: auto;
    margin-right: auto;
}
.screen.dashboard .sessions {
    background: rgb(28, 28, 30);
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}
.screen.dashboard .sessions .sessionsTitle {
    font-size: 24px;
    font-family: "Dela Gothic One", sans-serif;
    width: 100%;
}
.screen.dashboard .sessions .sessionsList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.screen.dashboard .sessions .sessionsList .sessionItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.screen.dashboard .sessions .sessionsList .sessionItem .sessionInfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.screen.dashboard .sessions .sessionsList .sessionItem .sessionInfo .sessionDevice {
    font-size: 18px;
}
.screen.dashboard .sessions .sessionsList .sessionItem .sessionInfo .sessionIP {
    font-size: 14px;
    opacity: 0.5;
}
.screen.dashboard .sessions .sessionsList .sessionItem .button {
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgb(255, 59, 48);
    color: white;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}
.screen.dashboard .button.logout {
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
    background: rgb(255, 59, 48);
    color: white;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    margin-left: auto;
    margin-right: auto;

}