* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Inter;
}

.video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.encryptor {
    width: 50vh;
    height: 60vh;
    border-radius: 8px;
    text-align: center;
    padding-top: 2vh;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.encryptor h2 {
    color: #1a1a1a;
    font-weight: 900;
    margin-bottom: 1vh;
    height: 4vh;
}

.encryptor h3 {
    color: #1a1a1a;
    font-weight: 900;
    margin-bottom: 1vh;
    height: 3vh;
}

.encryptor-main {
    width: 90%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.input-wrapper {
    position: relative;
    width: 90%;
    height: 7vh;
}

.input-wrapper input {
    width: 100%;
    height: 100%;
    border: 2px solid black;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    outline: none;
    padding: 0 0.5em;
}

.input-wrapper::before,
.input-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    height: 1.5px;
    width: 20%;
    max-width: 6vh;
    background-color: black;
}

.input-wrapper::before {
    left: 0vh;
}

.input-wrapper::after {
    right: 0vh;
}

.input-wrapper input:focus {
    border-top: none;
    outline: none;
}

label {
    width: 90%;
    height: 4vh;
    position: relative;
    top: 1.1vh;
    z-index: 10;
    display: block;
}

.enter {
    width: 90%;
    height: 4vh;
    margin-top: 1vh;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1vh;
    transition: background 0.3s;
    cursor: pointer;
    font-weight: 800;
}

.enter:hover {
    background-color: rgba(200, 200, 200, 0.4);
}

.line {
    width: 100%;
    height: 2px;
    background-color: black;
    margin-top: 1vh;
    margin-bottom: 1vh;
}

p {
    height: 30vh;
}

.encryptor-buttons {
    width: 90%;
    height: 5vh;
    display: flex;
    position: relative;
    text-align: center;
    bottom: 1vh;
    align-items: end;
    justify-content: center;
    gap: 8px;
}

.change {
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    height: 3vh;
    margin-bottom: 1vh;
    transition: background 0.3s;
    cursor: pointer;
}

.change:hover {
    background-color: rgba(200, 200, 200, 0.4);
}

.en-btn {
    width: 12vh;
    height: 3vh;
    border-radius: 8px;
    border: 2px solid black;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background 0.3s;
    cursor: pointer;
}

.en-btn:hover {
    background-color: rgba(200, 200, 200, 0.4);
}