/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px;
    background-image: url('bg.jpg'); /* Add your background image path here */
    background-size: cover;
    background-position: center;
}

/* Login Container */
.login-container {
    background: rgba(255, 255, 255, 0.9); /* Slight opacity to blend with background */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
}

.login-box {
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
}

p {
    color: #777;
    margin-bottom: 20px;
}

/* Steps */
.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.steps li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    border: 2px solid #ccc;
    color: #555;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.steps li.active {
    background-color: #4caf50;
    border-color: #4caf50;
    color: white;
}

.steps li:last-child {
    margin-right: 0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.steps .line {
    flex-grow: 1;
    height: 2px;
    background-color: #ccc;
    margin: 0 5px;
}

/* Input Fields */
.input-group {
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}

.input-group label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* Error Messages */
.error-message {
    font-size: 12px;
    color: red;
    margin-top: 5px;
    display: none; /* Initially hidden */
}

/* Buttons */
.buttons {
    margin-top: 20px;
}

button {
    background-color: #4caf50;
    color: white;
    padding: 10px 15px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

button#submitButton {
    background-color: #4caf50;
}

/* Logo Styles */
.login-container img {
    width: 100px; /* Adjust the logo size */
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .login-container {
        padding: 15px;
    }

    h1 {
        font-size: 20px;
    }

    button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .steps li {
        width: 25px; /* Adjust step circle size for smaller screens */
        height: 25px;
        font-size: 12px;
    }

    .steps .line {
        margin: 0 3px;
    }
}
