/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(180deg, #fff6d6, #EEEEEE, #9c5959);
    color: #000000;
    text-align: center;
	overflow: hidden;
}

img {
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
}

.login-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 26px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 360px;
    animation: slideIn 0.8s ease-in-out;
}

h2 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 15px;
    text-transform: uppercase;
}

.input-container {
    position: relative;
    margin-bottom: 15px;
}

.input-container input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.5);
    color: #000;
    outline: none;
    transition: 0.3s;
}

.input-container input:focus {
    background: rgba(255, 255, 255, 0.5);
}

.input-container i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #d7d7d7;
}

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
}

p {
    margin-top: 15px;
    font-size: 14px;
}

@media (max-width: 400px) {
    .login-container {
        padding: 25px;
    }
    
    h2 {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}