
:root {
    --space-purple: #2f2f2f;
    --galaxy-blue: #a2ff75;
    --neon-pink: #2f2f2f;
    --star-yellow: #a2ff75;
}

a{
    text-decoration: none;
    color: #000;
}



.cosmic-container {
    width: 100%;
    max-width: 550px;
    margin: 100px auto;
    display: grid;
    grid-template-columns: 0fr 0fr;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
}

.stellar-bg {
    width: 450px;
    position: relative;
    overflow: hidden;
}

.stellar-bg a{
    color: #2f2f2f;
    font-size: 40px;
    line-height: 450px;
    padding-left: 150px;
}


.login-form {
    width: 550px;
    padding: 2rem;
    position: relative;

}

.form-title {
    color: #2f2f2f;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dcdcdc, #2a2a2a, #d0d0d0, transparent);
}

.input-group {
    margin-bottom: 2rem;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.04);
    border: 2px solid transparent;
    border-radius: 8px;
    color: rgb(0, 0, 0);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(255,161,245,0.05);
}

.input-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.input-group input:focus ~ i {
    color: var(--neon-pink);
    transform: translateY(-50%) scale(1.2);
}

.login-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(145deg, #2f2f2f, #4d4d4d);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,161,245,0.3);
}

.login-btn::after {
content: '';
position: absolute;
top: -50%;
left: -70%;
width: 100%;
height: 200%;
background: linear-gradient(45deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent);
transform: rotate(45deg);
animation: btnGlow 3s infinite;
}

@keyframes btnGlow {
    0% { left: -50%; }
    100% { left: 150%; }
}

@media (max-width: 768px) {
    .cosmic-container {
        grid-template-columns: 1fr;
    }
    .stellar-bg {
        display: none;
    }
}


body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(255, 41, 112, 0.03) 0%, transparent 30%),
		radial-gradient(circle at 80% 70%, rgba(125, 74, 255, 0.03) 0%, transparent 35%),
		repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 2px, transparent 2px, transparent 6px);
	pointer-events: none;
	z-index: 0;
}