body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    text-align: center;
    padding: 0;
    margin:0;
}

section {
    background-color: antiquewhite;
    margin: 20px auto;
    padding: 20px;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 5px rgba(0,0,0,0.1);
}

#totalBricks{
    font-size: 3rem;
    font-weight: bold;
    color:blue;
    margin: 10px 0;
}

input[type="text"],
input[type="email"],
input[type="password"]{
    width: 80%;
    padding: 12px;
    text-align: center;
    margin: 10px 0;
    border: 2px solid blue;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
}

input:focus{
    border-color: deeppink;
}

button {
    background-color: blue;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
}
button:hover {
    background-color: transparent;
}

.progress-container{
    width: 90%;
    background-color: #faa43c;
    border-radius: 20px;
    margin: 15px auto;
    height: 25px;
    overflow: hidden;
    border: 2px solid blue;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background-color: green;
    transition: width 0.8s ease-in-out;
}

#progress-text {
    font-size: 1em;
    font-weight: bold;
    color: blue;
    margin-bottom: 10px;
}

#back-click {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
}

#back-btn {
    margin-left: 0;
    margin-right: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.hamburger {
    position: absolute;
    left: 15px;
    font-size: 100%;
    background-color: transparent;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 12px;
    z-index: 1000;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100%;
    background-color: white;
    transition: left 0.3s ease;
    z-index: 1002;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.side-menu.active {
    left:0;
}

.side-menu h3 {
    color:blue;
    margin-top: 10px;
}

.forgot-menu {
    position: fixed;
    bottom: -260px;
    height: 250px;
    width: 80%;
    background-color: antiquewhite;
    transition: top 0.5s ease;
    z-index: 1002;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 18px;
}

.forgot-menu.active {
    bottom: 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    color: blue;
    font-size: 28px;
    border: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1001;  
}

.overlay.active {
    display: block;
}

header {
    margin-top: 50px;
    padding: 0 15px;
}

header h1 {
    font-size: 1.8rem;
    word-wrap: break-word;
}

.side-menu nav a.menu-link {
    display: block;
    color: blue;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 0;
    border-bottom: 1px solid blue;
    transition: color 0.3s;
}

.side-menu nav a.menu-link:hover {
    color: chocolate;
}

.img-frame {
    width: 80%;
    height: 90%;
    margin: 30px auto;
    border: 5px solid black;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background-color: black;
}

#slideshow {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}