/*
Arch UI Login Styles
Updated: 08/05/2025
*/

html, body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    background: #000000 url('https://auth.archtronics.com/assets/img/mainbg-reverse.png') repeat;
    color: #ddd;
}
.hidden {
    display: none;
}
.login-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 65%;
    box-sizing: border-box;
}
.login-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #181818;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    border-radius: 10px;
    padding: 40px;
}
.login-container-inner {
    display: flex;
    flex-direction: column;
}
.two-column-layout {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.signup-part {
    
}
.branding-header {
    margin-bottom: 30px;
}
.branding-header svg {
    max-width: 440px;
}
.branding-header svg #logo-start {
    fill: #ffffff;
}
.branding-header svg #logo-end {
    fill: #66c000;
}
.left-column {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
}
.left-column .login-title {
    font-size: 35px;
}
.right-column {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.left-column {
    background: #181818;
}
.left-column img {
    width: 100%;
}
.right-column {
    background: #181818;
}
.buttons-container {
    margin-top: 20px;
    display: flex;
    gap: 30px;
}
.login-box {
    width: 100%;
}
.login-box h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: #f0f0f0;
}
.forgot-email {
    padding: 10px;
    color: #7ee900;
}
.message-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.error {
    color: #ff6b6b;
}
.success {
    color: #4caf50;
}
.login-footer {
    display: flex;
    justify-content: space-between;
    padding: 0px 40px;
    margin-bottom: 20px;
}
.login-footer a {
    text-decoration: none;
    color: #7ee900;
}
.login-footer .footer-right {
    display: flex;
    gap: 15px;
}

.arch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.arch-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
}

.arch-list li a {
    text-decoration:none;
    color:#79b92e;
}


.arch-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #79b92e; /* Your brand green */
    font-size: 1.2rem;
    line-height: 1;
}

.card {
	padding: 10px;
}

.card-title {
	margin-bottom: 10px;
}

@media (max-width: 1300px) {
    .login-wrapper {
        width: 80%;
    }
}

@media (max-width: 820px) {
    .two-column-layout {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 640px) {
    html, body {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .login-wrapper {
        width: 100%;
    }

    .login-container {
        width: 100%;
        padding: 20px;
        border-radius: 0px;
        box-sizing: border-box;
    }

    .branding-header {
        max-width: 100%;
        margin-bottom: 0px;
    }

    .login-footer {
        justify-content: center;
        gap: 15px;
        padding-bottom: 20px;
    }
}