body {
    margin: 0;
    padding: 0;
    font-family: 'sans-serif';
    background: #83a4d4;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #b6fbff, #83a4d4);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #b6fbff, #83a4d4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    border: none;
}

.box {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background: #212b36;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2);
    color: white;
    transition: 0.15s;
}

.box h1 {
    color: white;
    font-weight: 300;
    font-family: 'Roboto';
    margin-bottom: 20px;
}

.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;
    width: 100%;
    max-width: 300px;
    outline: none;
    color: white;
    border-radius: 24px;
    transition: 0.25s;
}

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

.box button {
    border: 2px solid #2ecc71;
    background: #2ecc71;
    padding: 14px 40px;
    outline: none;
    color: white;
    border-radius: 24px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
    display: inline-flex; /* Ensure button's content is centered and full width is clickable */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    text-align: center;
    box-sizing: border-box; /* Include padding and border in button's total width and height */
}

.box button a {
    color: white; /* Ensure link text color matches the button */
    text-decoration: none; /* Remove underline from link text */
    display: block; /* Make the link cover the entire button area */
    width: 100%; /* Make the link take up full width of the button */
    height: 100%; /* Make the link take up full height of the button */
    line-height: 1; /* Adjust line height to ensure proper alignment */
}

.box button:hover {
    background: #27ae60;
}

.forgot {
    text-decoration: underline;
}

ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    padding: 0;
}

ul.social-network li {
    display: inline;
    margin: 0 5px;
}

.social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.social-circle li i {
    margin: 0;
    line-height: 50px;
    text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
    transform: rotate(360deg);
    transition: all 0.2s;
}

.social-circle i {
    color: #fff;
    transition: all 0.8s;
}
