body.login {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    margin: 0;
    background-color: #121212; /* Primary dark background color */
}

.left-graphics {
    flex: 1;
    background-image: url('your-background-image-url.jpg'); /* Add your graphics image */
    background-size: cover;
    background-position: center;
}

.login #login {
    flex: 1;
    max-width: 400px;
    margin: auto;
    padding: 40px;
    background-color: #252932; /* Slightly lighter dark color for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.login h1 a {
    background-image: url('https://www.altechmind.com/wp-content/uploads/2023/04/Altechmind-Logo-full-text-100px.png') !important;
    width: 400px !important;
    height: auto !important;
    background-size: contain !important;
    margin-bottom: 20px;
}

.login form {
    margin-top: 20px;
}

.login form {
    margin-top: 20px;
    margin-left: 0;
    padding: 26px 24px;
    font-weight: 400;
    overflow: hidden;
    background: #252932;
   border: 1px solid #252932;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.login label {
    font-weight: bold;
    color: #ddd; /* Light text color for readability */
}

.login input[type="text"],
.login input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #444;
   
    
    background-color: #20242C !important;
    border-color: #20242C !important;
    color: #ccc !important;
    transition: none !important;
}

.login input[type="submit"] {
    background: linear-gradient(58deg, #9DCA00 0%, #063D2C 50%, #9DCA00); /* Gradient button */
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.login input[type="submit"]:hover {
    background-color: #005177; /* Optional hover effect; can be adjusted */
}

@media (max-width: 768px) {
    body.login {
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Centers elements on smaller screens */
    }

    .left-graphics {
        display: none; /* Hide graphics on smaller screens */
    }

    .login #login {
        max-width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        box-shadow: none; /* Optional, for a lighter look */
        border-radius: 0; /* Optional, for a lighter look */
    }
}
