* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
}


/*--------------------------LOGIN START--------------------------*/
.login-box-parent{
    display: grid;
    place-items: center;
    height: 100vh;
}
.login-form-box {
    width: 100%;
    max-width: 375px;
    min-width: 300px;
    height: 450px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(107, 107, 107, 0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(107, 107, 107, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(107, 107, 107, 0.5);
}

.login-form-box img{
    border-radius: 50%;
    margin-left: 90px;
}

.login-form-box #login-form {
    text-align: center;
    margin: 25px 0px;
}

/*--------------------------Form Page Start --------------------------*/

video {
    width: 100%;  /* Ensures video fits within the column */
    height: auto; /* Keeps aspect ratio */
    max-width: 100%; /* Prevents overflow */
    border: 1px solid #ccc; /* Optional: adds a border for visibility */
    display: block; /* Ensures it's not inline */
}

#photoPreview {
    width: 100%; /* Make sure preview image fits in the column */
    height: auto;
    max-width: 100%;
    display: block;
    border: 1px solid #ccc;
}

/*-------------------------- Home Page Start --------------------------*/

#top-bar{
    background-color: #6941ff;
    color: white;
    padding: 10px;
    width: 100%;
    position: fixed;
    font-size: 1.2em;
    top: 0;
    z-index: 1000;
}

#app-content{
    margin-top: 60px;
}

#bottom-nav{
    background-color: #6941ff;
    color: #fff;
    padding: 10px;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

.col-icon{
    padding: 0px;
}
.btm-icon-box{
    width: 100%;
    text-align: center;
    /* background-color: green; */
}

.btm-icon-box img{
    width: 50%;
    height: 50%;
}