:root {
    --orange: rgb(255 100 43);
    --box-shadow: 7.5px 7.5px 0 rgba(22, 160, 133, .2);
    --text-shadow: 6px 6px 0 rgba(0, 0, 0, .2);
}

.box{
    width: 90%;
    height: 80vh;
    margin: 20px auto;
    border-top: 2px solid blue;
    border-bottom: 2px solid var(--orange);
    display: flex;
    justify-content: center;
}


/* Login section */

.admin{
    max-width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.admin .form {
    width: 250px;
    height: 380px;
    background: #02020295;
    opacity: 1;
    border-radius: 10px;
    padding: 25px;
    transition: .4s ease;
}

.form h2 {
    width: 220px;
    font-family: sans-serif;
    text-align: center;
    color: #35c9ff;
    font-size: 22px;
    background-color: #fff;
    border-radius: 10px;
    margin: 2px;
    padding: 8px;
}

.form input{
    width: 240px;
    height: 35px;
    background: transparent;
    border-bottom: 0.8px solid #35c9ff;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 35px;
    font-family: sans-serif;
}

.form input:focus {
    outline: none;
}

::placeholder {
    color: #fff;
    font-family: Arial;
}


.form .btn {
    width: 120px;
    height: 40px;
    background: #35c9ff;
    border: none;
    border-radius: 8px;
    margin-left: 65px;
    margin-top: 100px;
    font-size: 18px;
    cursor: pointer;
    transition: .4s ease;
}

.form .btn a {
    text-decoration: none;
    color: #000;
    transition: .3s ease;
}

.btn:hover {
    background: var(--orange);
}

