/* For login_page.html and internet.html */

body {
    background: linear-gradient(to right, #1b5c81, #11153a);
    background: -moz-linear-gradient(to right, #1b5c81, #11153a) ;
    background: -ms-linear-gradient(to right, #1b5c81, #11153a) ;
    background: -webkit-linear-gradient(to right, #1b5c81, #11153a) ;
    background: -webkit-linear-gradient(to right, #1b5c81, #11153a) ;
    background: -o-linear-gradient(to right, #1b5c81, #11153a) ;
    background:  linear-gradient(to right, #1b5c81, #11153a) ;
    background-size: cover;
}

.card {
    margin-bottom: 20px;
    border:none;
}

.box {
    width: 500px;
    padding: 40px;
    position: absolute;
    top: 35%;
    left: 50%;
    background: #191919;
    text-align: center;
    transition: 0.25s;
    transform: translate(-50%, -50%); /* Centers the box */
    margin-top: 100px;
}

/* .box {
    width: 40%;
    padding: 3.5%;
    position: absolute;
    top: 35%;
    left: 50%;
    background: #191919;
    text-align: center;
    transition: 0.25s;
    transform: translate(-50%, -50%);
    margin-top: 9%;
} */


/* .box_network {
    width: 700px;
    height: 525px;
    padding: 60px;
    position: absolute;
    top: 45%;
    left: 50%;
    background: #191919;
    text-align: center;
    transition: 0.25s;
    transform: translate(-50%, -50%); 
    margin-top: 100px;
} */

.box input[type="text"],
.box input[type="password"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 10px 10px;
    width: 250px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    font-size:18px;
}

/* .box h1 {
    color: white;
    font-weight: 600;
    font-size: 48px;
    margin-top: -10px;
} */

h1 {
    color: white;
    /* text-transform: uppercase; */
    font-weight: 600;
    font-size: 48px;
    margin-top: -10px;
}
p {
    color: #6381cd;
    font-size: 18px;
}

.box input[type="text"]:focus,
.box input[type="password"]:focus {
    width: 300px;
    border-color: #2ebccc
}

button {
    /* padding: 10px 20px; */
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #2ebccc;
    padding: 14px 40px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    cursor: pointer;
    font-size:18px;
}

button:hover {
    background: #2ebccc
}

.error {
    color: red;
    margin-top: 10px;
}


  /* Network Config Styles*/
.xob {
    display: flex;
    justify-content: space-between; /* create space between the two boxes */
}

/* Style for individual button boxes */
.button-box-network {
    width: 200px;
    height: 150px;
    background-color: #3498db; /* background color */
    text-align: center;
    padding: 20px;
    color: #fff; /* Text color */
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
}

.box_network input[type="text"],
.box_network input[type="password"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #3498db;
    padding: 10px 10px;
    width: 250px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
    font-size:18px;
}

.material-symbols-outlined {
    font-size:60px !important;
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

.md-60 {
    font-size: 60px;
}

ul {
    text-align: center;
}

@media screen and (max-width: 768px) and (orientation: portrait)  {
    .box {
        width: 75%;
        padding: 8%;
    }
    .box input[type="text"]:focus,
    .box input[type="password"]:focus {
        width: 275px;
        border-color: #2ebccc
    }
     
}

@media screen and (max-width: 855px) and (orientation: landscape)  {
    .box {
        width: 50%;
        padding: 4%;
        margin-top: 58px;
    }
}

/* For anything larger e.g.work monitor */
@media screen and (min-width: 2000px) {
    .error {
        margin-top: 50px;
    }
}

