﻿<style >
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e9ecef;
    /* background: linear-gradient(to right, #5e9f75, #5e9f9f); */
}

.outer-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 5%; */
}

.login-container {
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.logo-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* background: linear-gradient(to right, #5e9f75, #5e9f9f); */
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0.4rem;
}

.logo-content {
    text-align: center;
}

    .logo-content h1 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .logo-content p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

.form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 2rem;
}

.login-form {
    width: 100%;
    max-width: 400px;
}

    .login-form h2 {
        margin-bottom: 2rem;
        color: #333;
        font-weight: 600;
    }

.form-control {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: linear-gradient(to right, #5e9f75, #5e9f9f);
    /* background: teal; */
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    margin-top: 1rem;
}

    .btn-login:hover {
        opacity: 0.9;
        color: white;
    }

.forgot-password {
    text-align: right;
    margin-top: 0.5rem;
}

    .forgot-password a {
        color: #667eea;
        text-decoration: none;
        font-size: 0.9rem;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.infra-logo {
    height: 31em;
    padding: 60px;
}

@media (max-width: 767px) {
    .logo-section {
        display: none;
    }

    .form-section {
        padding: 1rem;
    }

    .outer-container {
        padding: 2%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .shs-logo {
        height: 21em;
    }

    .infra-logo {
        height: 22em;
    }
}

@media (max-width: 1024px) {
    .shs-logo, .infra-logo {
        /* height:26em; */
        height: 27em;
    }

    .outer-container {
        padding: 5%;
    }
}
