body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f2f2f2;
}

.min-h-screen {
    height: 100vh;
    display: flex;
    align-items: center;
}

.bg-base-200 {
    background-color: #f2f2f2;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.grid {
    display: grid;
}

.md\\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bg-base-100 {
    background-color: #ffffff;
}

.rounded-xl {
    border-radius: 10px;
}

.hero {
    background-color: #f0f0f0;
}

.hero-content {
    display: flex;
    justify-content: center;
}

.text-3xl {
    font-size: 24px;
}

.font-bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.w-12 {
    width: 3rem;
}

.inline-block {
    display: inline-block;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mask {
    border-radius: 50%;
}

.text-2xl {
    font-size: 18px;
}

.mt-8 {
    margin-top: 2rem;
}

.font-semibold {
    font-weight: 600;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-primary {
    color: #3f00e7;
}

.hover\\:text-primary:hover {
    color: #3f00e7;
}

.hover\\:underline:hover {
    text-decoration: underline;
}

.hover\\:cursor-pointer:hover {
    cursor: pointer;
}

.transition {
    transition: all 0.2s;
}

.duration-200 {
    transition-duration: 200ms;
}

.text-error {
    color: red;
}

.mt-2 {
    margin-top: 0.5rem;
}

.btn {
    background-color: #3f00e7;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.w-full {
    width: 100%;
}

.btn-primary {
    background-color: #3f00e7;
}

.input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input-bordered {
    border: 1px solid #ccc;
}

.mt-4 {
    margin-top: 1rem;
}

.login-title {
    font-size: 1.5rem; /* Equivalent to text-2xl in Tailwind */
    font-weight: 600; /* Equivalent to font-semibold in Tailwind */
    margin-bottom: 0.5rem; /* Equivalent to mb-2 in Tailwind */
    text-align: center; /* Equivalent to text-center in Tailwind */
}