/* General container styling */

#logo {
            max-width: 150px;
	margin-bottom: 10px;}
		
 .container {
    max-width: 600px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden; /* Ensures sections stay within rounded border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Darker shadow for black theme */
    background-color: #F9F9F9; /* Black background */
    font-family: Arial, sans-serif;
	
}
 .container-reg {
    max-width: 800px;
	 
	padding: 0px 10px;
    margin: auto;
    border-radius: 10px;
    overflow: hidden; /* Ensures sections stay within rounded border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Darker shadow for black theme */
    background-color: #F9F9F9; /* Black background */
    font-family: Arial, sans-serif;
	
}

/* Header section styling */
.headder_view {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #1c1c1c; /* Dark gray header background */
    border-bottom: 1px solid #333333; /* Border to separate header and body */
}

/* Image container styling (keep original image sizes) */
.image-container {
    display: flex;
    justify-content: center;
}

#logo {
    margin: 0 10px;
}
      
.headder_view{
	background-color: #111112;
            color: #fff;
  align-content:center;
	 text-align: center;
	padding: 10px 15px;
  	margin: 0 auto;
}


 p.error-message {
            color: #ff0000;
            text-align: center;
            margin-top: 10px;
        }
/*.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}*/
h2 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    cursor: pointer;
    background-color: #010403;
    color: #fff;
    border: none;
    font-size: 14pt;
}

form button:hover {
    background-color: #071F17;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333333; /* Darker button background */
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #555555; /* Lighter gray on hover */
}

/* Remember Me styling */
label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #737373;
}

label i {
    margin-right: 5px;
}
/* Media queries for tablet and mobile views */
@media (max-width: 768px) {
    .container {
        padding: 0px;
        max-width: 90%;
    }

    form input, form button {
        padding: 8px;
        font-size: 14px;
    }
}

.slink { 
	width: 100%;
	text-align: center;
	padding: 10px;

}
.slink img {width:5%; height: auto; padding: 10px;
	
	
}

/* shourt cut button */
/* Container for the header */
.headder_view {
   /*  position: relative; Make the headder_view the reference for the button 
    padding: 20px;*/
}

/* Save shortcut button */
#saveShortcutButton {
    padding: 10px;
    font-size: 10px;
    background-color: #383D3B;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    position: absolute;   /* Position relative to .headder_view */
    top: 10px;            /* Distance from the top */
    right: 10px;          /* Distance from the right */
}

#saveShortcutButton:hover {
    background-color: #EAF5F1;
    color: black;
}

#saveShortcutButton i {
    font-size: 10px;
}
.container-body {
	padding: 20px;
	
}


.pass-recov {
	text-align: right;
}

.badge-input-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-input-row input[type="text"] {
    width: 50px;
    padding: 10px;
    font-size: 1.2rem;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
}


