/* Reset and global styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
    background-color: #f5f5f5;
}

/* Mobile container */
.mobile-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}
.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1); /* Transparent background for status bar */
    color: black;
}
.status-icons img {
    height: 16px;
    margin-left: 5px;
}

/* Logo and title section */
.logo-container {
    text-align: center;
}

.app-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Login form styling */
.login-box {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}

/* Forgot password link */
.forgot-password {
    display: block;
    text-align: right;
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Sign in button */
.sign-in-btn {
    width: 100%;
    padding: 10px;
    background-color: black;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sign-in-btn:hover {
    background-color: #333;
}

/* Sign up section */
.sign-up-section {
    text-align: center;
    margin-top: 20px;
}

.sign-up-section p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.sign-up-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.sign-up-btn:hover {
    background-color: #218838;
}

.sign-up-btn:active {
    background-color: #1e7e34;
}
