/* General Styles */
body {
    background: linear-gradient(to right, #e2e2e2, #c9d6ff);
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    background: #fff;
    width: 100%;
    max-width: 350px;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Title */
.form-title {
    font-size: 1.6rem;
    color: #5072a7;
    margin-bottom: 1rem;
}

/* Input Groups */
.input-group {
    position: relative;
    margin-bottom: 1.2rem;
    width: 100%;
}

.input-group i {
    position: absolute;
    top: 35%;
    left: 10px;
    transform: translateY(-50%);
    color: #5072a7;
}

.input-group input {
    width: calc(100% - 40px); /* Adjust width to fit the icon */
    padding: 8px 8px 8px 35px; /* Padding adjusted for icon space */
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: #5072a7;
}

.input-group label {
    font-size: 0.8rem;
    color: #888;
    margin-left: 5px;
    display: block;
    margin-bottom: 3px;
    text-align: left;
}

/* Buttons */
.btn {
    width: 100%;
    background: #5072a7;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #405b87;
}

/* Or Divider */
.or {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #888;
    margin: 1rem 0;
}

.or span {
    background: #fff;
    padding: 0 10px;
}

.or::before,
.or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
    margin: 0 10px;
}

/* Social Icons */
.icons {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.icons i {
    font-size: 1.3rem;
    color: #5072a7;
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.icons i:hover {
    transform: scale(1.1);
}

/* Links */
.links {
    margin-top: 1rem;
    font-size: 0.8rem;
}

.links p {
    margin-bottom: 0.3rem;
}

.links button {
    background: none;
    border: none;
    color: #5072a7;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}

.links button:hover {
    color: #405b87;
}

/* Recover Password */
.recover a {
    color: #5072a7;
    text-decoration: none;
    font-size: 0.8rem;
}

.recover a:hover {
    color: #405b87;
}
