@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary: #cc33ff;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
}

li {
    list-style: none;
}

.auth-container {
    background-color: #f0f2f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('https://safe-primescapital.com/themes/berry-lite/img/bg-img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-form {
    background-color: #333;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
    padding: 20px;
    color: #fff;
}

.auth-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.auth-logo img {
    width: 130px;
}

.auth-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 16px;
}

.registration-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
    background-color: #fff;
}

.form-control:focus {
    border-color: #4285f4;
    outline: none;
}

.form-control::placeholder {
    color: #f57600;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
    color: #000;
    font-size: 20px;
}

.btn {
    display: block;
    width: 100%;
    padding: 8px;
    background-color: #031749;
    border-radius: 4px;
    color: #fff;
    transition: background-color 0.3s;
    font-size: 15px;
    font-weight: 500;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-size: 14px;
}

.login-link a {
    color: #ff7700;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

.forgot-password {
    text-align: center;
    margin-bottom: 5px;
}

.forgot-password a {
    color: #ff7700;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.register-link {
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.register-link a {
    color: #ff7700;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.register-link a:hover {
    text-decoration: underline;
}