:root {
    --background: #f0f4f8;      /* Light Grayish Blue */
    --color: #333333;           /* Dark Slate Gray */
    --primary-color: #4a90e2;   /* Soft Blue */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--background);
    color: var(--color);
    letter-spacing: 1px;
    transition: background 0.2s ease, color 0.2s ease;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    position: relative;
    width: 22.2rem;
}

.form-container {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #ffffff;
    padding: 2rem;
}

.login-container form input {
    display: block;
    padding: 14px;
    width: 100%;
    margin: 1rem 0;
    color: var(--color);
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-container form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.4);
    outline: none;
}

.login-container form button {
    background-color: var(--primary-color);
    color: #ffffff;
    display: block;
    padding: 13px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.login-container form button:hover {
    background-color: #3a78c2;
    transform: scale(1.02);
}

.circle {
    width: 8rem;
    height: 8rem;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
}

.circle-two {
    bottom: 0;
    right: 0;
    z-index: -1;
    transform: translate(45%, 45%);
}

.register-forget {
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
}

.opacity {
    opacity: 0.7;
}

@keyframes wobble {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.025);
    }
}
