CSS code is correct but CodeChef is not accepting upon submission

Describe your issue

CSS code is correct as per the given instructions but CodeChef fails to accept it upon submission. Please fix it so I can proceed with this part of the course.

Course URL: Task - Style an Interactive Landing Page in CSS

CSS Course, 5th course Pesudo-classes

Screenshot

/* Part 2: Your Task - Add Interactive Effects */

.call-to-action:hover{
background-color: darkslateblue;
}

.call-to-action:active{
background-color: rgb(26, 41, 0);
}

.email-input:focus{
border: 2px solid;
border-color: rgb(0, 255, 64);
outline:none
}

.main-nav a:hover{
text-decoration: underline;
}

Additional info

CodeChef is not accepting it’s own solution.

Hi @sid_ragav_94 Thank you for your feedback.

The issue was due to a library error, and I’ve now resolved it. Please reset your lab and try submitting again.

Excellent! It processed the code successfully. THanks for fixing it.