/* OWLTREE Modern Login - Responsive Fix */

:root {
    --primary-color: #e73c7e;
}

body.bodylogin {
    font-family: 'Poppins', sans-serif;
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.main-container {
    max-width: 1500px;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    background-color: transparent;
}

.login-container {
    flex: 1;
    background-image: linear-gradient(to top, #FDD835 0%, #FBC02D 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 65%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

.title {
    color: #333;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.subtitle {
    color: #555;
    font-size: 1.1rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 35px;
}

.input-group {
    position: relative;
    margin-bottom: 22px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 1.1rem;
}

#username,
#password {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

#username::placeholder,
#password::placeholder {
    color: #666;
    font-weight: 300;
}

#username:focus,
#password:focus {
    outline: none;
    background: #fff;
    border-color: #a1c4fd;
    box-shadow: 0 0 0 4px rgba(161, 196, 253, 0.3);
}

.options-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #555;
}

.remember-me {
    display: flex;
    align-items: center;
    color: #555;
}

.remember-me label {
    margin-left: 8px;
    cursor: pointer;
    font-weight: 300;
}

.remember-me input[type="checkbox"] {
    cursor: pointer;
}

.forgot-password {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #333;
    text-decoration: underline;
}

.button-group {
    margin-top: 10px;
}

.login-button, .signup-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
}

.login-button {
    background: linear-gradient(45deg, #e73c7e, #23a6d5);
    color: #fff;
    box-shadow: 0 4px 20px rgba(231, 60, 126, 0.4);
}

.login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 60, 126, 0.5);
}

.signup-button {
    background: linear-gradient(45deg, #23d5ab, #23a6d5);
    color: #fff;
    margin-top: 15px;
    box-shadow: 0 4px 20px rgba(35, 213, 171, 0.4);
}

.signup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(35, 213, 171, 0.5);
}

.info-panel {
    flex: 1;
    background-color: #fff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.info-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.info-feature {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-feature i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.info-feature div {
    flex: 1;
}

.info-feature strong {
    font-weight: 600;
    color: #444;
}

.info-feature p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion) {
  body.bodylogin {
    -webkit-animation: none;
    animation: none;
  }
} 