﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color:#FFFFFF;
   
}

.wrapper {
    width: 90%;
    max-width: 380px;
    background:#CCCCCC;
    border-radius: 15px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.wrapper .title {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
    color: #000000;
    background: linear-gradient(-135deg, #c850c0, #4158d0);
    border-radius: 15px 15px 0 0;
}

.field {
    position: relative;
    margin: 15px 0;
}

.input-field {
    width: 100%;
    height: 45px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: 0.3s;
}

.input-field:focus {
    border-color: #4158d0;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin: 10px 0;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    margin-right: 5px;
}

.pass-link a {
    text-decoration: none;
    color: #000000;
}

.pass-link a:hover {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    height: 45px;
    border: none;
    background: #007BFF;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.signup-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.signup-link a {
    color: #000000;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}
/* Logo Styling */
.logo-container {
    text-align: center;
    margin-bottom: 15px;
    /*background-color:#ccc;*/
    
}

.logo {
    width: 100px; /* Adjust based on your logo size */
    height: auto;
    border-radius: 10px; /* Optional: Makes the logo rounded */
}

/* Make sure the login form wrapper remains responsive */
.wrapper {
    width: 90%;
    max-width: 380px;
    background:#FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center; 
}
/* Responsive Design */
@media (max-width: 480px) {
    .wrapper {
        width: 95%;
        padding: 20px;
    }

    .title {
        font-size: 22px;
        padding: 15px 0;
    }

    .input-field {
        height: 40px;
        font-size: 14px;
    }

    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .checkbox {
        margin-bottom: 10px;
    }

    .submit-btn {
        font-size: 16px;
        height: 40px;
    }
}
