* {
    box-sizing: border-box;
    padding: 0%;
    margin: 0%;
    border: none;
    outline: none;
}

html {
    height: 100%;
}

div {
    border-radius: 5px;
    padding: 5px;
}

body {
    background-image: 
        linear-gradient(rgba(255,255,255,0.6),
        rgba(255,255,255,0.6)),
        url('../img/xcloud.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: #fdfdfc;
    font-family: 'Arial', sans-serif;
}

.center-login {
    position: fixed;
    top: 40%;
    left: 50%;
    width: 30em;
    height: 18em;
    margin-top: -9em;
    margin-left: -15em;
}

.center {
    position: fixed;
    text-align: center;
    top: 30%;
    width: 100%;
}

.center-icon {
    display: flex;
    justify-content: center;
}

.circle {
    border-radius: 50%;
    display: inline-block;
    background-color: #146fb7;
    height: 110px;
    width: 110px;
    text-align: center;
}

.login-icon {
    filter: brightness(0) invert(100%);
    -webkit-filter: brightness(0) invert(100%);
    line-height: inherit;
}

.btn,
.btn-primary {
    background-color: #146fb7;
    border-color: #146fb7;
    transition-duration: 0.4s;
    width: 100%;
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #115f9e;
    border-color: #115f9e;
}

.btn-primary:focus {
    background-color: #115f9e;
    outline-color: #115f9e;
}
.btn-with-icon {
    height: 50px;
    padding: 0 16px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-with-icon .btn-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    display: inline-block;
}
