/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 360px;
    width: 100%;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #673AB7;
    margin-bottom: 20px;
    font-size:22.5px;
}

form {
    text-align: left;
}

.form-container {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    color: #555;
}

input[type="email"],
input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #DDD;
    border-radius: 5px;
    width: 100%;
}

input[type="submit"] {
    padding: 10px 20px;
    background: linear-gradient(to right, #00BCD3, #673AB7);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

input[type="submit"]:hover {
    background: linear-gradient(to right, #0097A7, #5E35B1);
}

a {
    color: #00BCD3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
}
/* Bottom Navigation Bar Styles */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
   border-top-left-radius: 15px; /* Rounds the top-left corner */
    border-top-right-radius: 15px; /* Rounds the top-right corner */
}

.bottom-nav a {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent; /* Remove blue highlight on touch devices */
}

.nav-image-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Adjust size as needed */
    height: 35px; /* Adjust size as needed */
    margin: 0 auto 5px;
    border-radius: 50%; /* Rounded corners for the card */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for card effect */
    background: linear-gradient(to right, #00BCD3, #673AB7);
}

.bottom-nav img {
    width: 25px; /* Adjusted size to fit inside the card */
    height: 25px; /* Adjusted size to fit inside the card */
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the entire circular area */
    
}

.bottom-nav a span {
    display: block;
    font-size: 0.9rem;
}   