/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Left Side (Image Section) */
.left-side {
    flex: 1;
    background: #070920 url('t3ta-platform-login.png') no-repeat center;
    background-size: cover;
    position: relative;
}

/* Right Side (Form Section) */
.right-side {
    flex: 1;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form Container */
.container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Headings */
h2 {
    font-size: 26px;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Input Fields */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

/* Buttons */
button {
    width: 100%;
    padding: 12px;
    background: #070920;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #1b1e4b;
}

/* Links */
p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #070920;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error {
    margin-top: 15px;
    color: #ffffff;
    background-color: #ff0000;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}






