body {
     background-color:  #F2F0E6;
    }
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    padding: 10px 20px;
    color: #fff;
}

/* FLEX PARTS */
.nav-left, .nav-center, .nav-right {
    flex: 1;
}

.nav-left { text-align: left; }
.nav-center { text-align: center; }
.nav-right { text-align: right; }

/* HAMBURGER */
.hamburger {
    font-size: 26px;
    cursor: pointer;
}

/* OVAL IMAGE */
.profile-img {
    width: 100px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid gold;
}

/* MENU */
.menu {
    display: none;
    background: #111;
    width: 50%;
    text-align: center;
}

.menu a {
    display: block;
    padding: 15px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.menu a:hover {
    background: #222;
}

.marble {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* Creates the 3D look */
  background: radial-gradient(circle at 30% 30%, #fff, #ccc 30%, #888 60%, #333 100%);
  box-shadow: inset -5px -5px 15px rgba(0,0,0,0.5), 5px 10px 20px rgba(0,0,0,0.3);
}

/* While hovering, make it lift or glow */
.marble:hover {
  transform: translateY(-5px);
  box-shadow: inset -5px -5px 15px rgba(0,0,0,0.5), 0px 15px 25px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.callBtn {
    color:white;
}
a.callBtn:visited { color: yellow; }

.test{
    display:none;
}

.password{
    border-style: dashed   ;
    border-radius: 10%;
    border-color: coral;
    width:25%;
    display:none ;
    color:blue;
    font-weight: bold;
    font-size: 14px;
    float:right;
    height:50%;
}
.password_button{
    color: red;
    font-weight: bold;
    margin-left: 15%;
}

.login-box {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px auto;   /* centers horizontally */
    width: 90%;
    max-width: 600px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.login-box h1, .login-box h2 {
    margin: 5px 0;
}
.box {
        background: #fff;
        padding: 40px;
        text-align:center;
        color:red;
        font-size:20px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        max-width: 400px;
        width: 90%;
    }

.break {
    flex-basis: 100%;
    height: 50px;
}

.submenu{

    display:none;

    position:absolute;

    top:0;

    left:100%;

    min-width:220px;

    background:#111;

    z-index:1000;
    border-style:solid;
}

/* SUBMENU LINKS */
.submenu a{

    display:block;

    padding:15px;

    color:white;

    text-decoration:none;

    border-bottom:1px solid #333;
}

/* HOVER EFFECT */

.submenu a:hover{

    background:#222;
}

.dropdown{

    position:relative;
}

/* SHOW SUBMENU ON HOVER */

.dropdown:hover .submenu{

    display:block;
}